<!--

var moz = (navigator.appName == 'Netscape' && navigator.product == 'Gecko') ? 1 : 0;

function onblurfocus() {
	if (moz){
		return self.close();
	} else {
	    return self.focus(); 
	}
}

function PopUp(url, name, width,height,center,resize,scroll,posleft,postop) {
    if (posleft != 0) { x = posleft }
    if (postop  != 0) { y = postop  }

    if (!scroll) { scroll = 1 }
    if (!resize) { resize = 1 }

    if ((parseInt (navigator.appVersion) >= 4 ) && (center)) {
      X = (screen.width  - width ) / 2;
      Y = (screen.height - height) / 2;
    }
    if (scroll != 0) { scroll = 1 }

    var Win = window.open( url, name, 'width='+width+',height='+height+',top='+Y+',left='+X+',resizable='+resize+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no');
}

function PopUp_img(url, name, width,height,center,resize,scroll,posleft,postop) {
    if (posleft != 0) { x = posleft }
    if (postop  != 0) { y = postop  }

    if (!scroll) { scroll = 1 }
    if (!resize) { resize = 1 }

    if ((parseInt (navigator.appVersion) >= 4 ) && (center)) {
      X = (screen.width  - width ) / 2;
      Y = (screen.height - height) / 2;
    }
    if (scroll != 0) { scroll = 1 }

    var Win = window.open( "<img src='"+url+"' width="+width+" height="+height+">", name, 'width='+width+',height='+height+',top='+Y+',left='+X+',resizable='+resize+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no');
}

function TurnOn(imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName + "on.src");
      document[imgName].src= imgOn;
    }
 }

function TurnOff(imgName)
 {
   if (document.images)
    {
      imgOff=eval(imgName + "off.src");
      document[imgName].src= imgOff;
    }
 }

  if (document.images)
   {
     prevon= new Image(76,19);
     prevon.src="images/laundry/prev_b_on.gif";  

     prevoff= new Image(76,19);
     prevoff.src="images/laundry/prev_b.gif";

     next_on= new Image(76,19);
     next_on.src="images/laundry/prev_b_on.gif";  

     next_off= new Image(76,19);
     next_off.src="images/laundry/prev_b.gif";
   }

//-->
