var ROOTURL="http://www.hygienee.com/";
//var ROOTURL="http://www.swishpixel.co.uk/drafts/hygienik/";
//var ROOTURL="http://localhost/COM/MAKE/hygienik/";

function picture_window($file_path,$width,$height,$title) {
   pic_window = window.open("","media","width="+$width+",height="+$height+",scrollbars=no,left=100,top=100");
   pic_window.document.open();
   pic_window.document.write('<html><head><title>'+$title+'</title></head><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onblur="javascript: self.close()">'); 
   pic_window.document.write('<img src=\"'+$file_path+'\" width='+$width+' height='+$height+' alt=\"'+$title+'\">');
   pic_window.document.write('</body></html>');
}
	
function roll_over(image_id,change_to) {
   var this_img=document.getElementById(image_id);
   this_img.src=change_to;
}
//check/uncheck array of checkboxes
var checkflag = "false";
function check_all($form_name,$checkbox_name) {
   $cboxes=document.forms[$form_name].elements[$checkbox_name+'[]'];
   $checker=document.forms[$form_name].checker;
   $total=$cboxes.length;
   if(!$cboxes.length) {
      $cboxes[0]=$cboxes;
      $total=1;
   }
   if(checkflag == "false"){
	    for (i = 0; i < $total; i++) { $cboxes[i].checked = true; }
	   checkflag = "true";
   } else {
	    for(i=0;i<$total;i++){ $cboxes[i].checked = false; }
      checkflag = "false";
   }
}

function display_hide($from,$element) {

if($from=='block') {
   $to='none';
} else {
   $to='block';
}
$s=document.getElementById($element).style;
if($s.display==$from || !$s.display) {
   $s.display=$to;
} else {
   $s.display=$from;
}

}