
//** Code to preload the mouseover images.
if (document.images)
{

   Button1On = new Image(29, 39); Button1On.src = "/images/Button1On.gif";
   Button1Off = new Image(29, 39); Button1Off.src = "/images/Button1Off.gif";

   Button2On = new Image(29, 39); Button2On.src = "/images/Button2On.gif";
   Button2Off = new Image(29, 39); Button2Off.src = "/images/Button2Off.gif";

   Button3On = new Image(29, 39); Button3On.src = "/images/Button3On.gif";
   Button3Off = new Image(29, 39); Button3Off.src = "/images/Button3Off.gif";

   Button4On = new Image(29, 39); Button4On.src = "/images/Button4On.gif";
   Button4Off = new Image(29, 39); Button4Off.src = "/images/Button4Off.gif";

   Button5On = new Image(29, 39); Button5On.src = "/images/Button5On.gif";
   Button5Off = new Image(29, 39); Button5Off.src = "/images/Button5Off.gif";

   Button6On = new Image(29, 39); Button6On.src = "/images/Button6On.gif";
   Button6Off = new Image(29, 39); Button6Off.src = "/images/Button6Off.gif";

   Button7On = new Image(29, 39); Button7On.src = "/images/Button7On.gif";
   Button7Off = new Image(29, 39); Button7Off.src = "/images/Button7Off.gif";
   
   Button8On = new Image(29, 39); Button8On.src = "/images/Button8On.gif";
   Button8Off = new Image(29, 39); Button8Off.src = "/images/Button8Off.gif";
   
   Button9On = new Image(29, 39); Button9On.src = "/images/Button9On.gif";
   Button9Off = new Image(29, 39); Button9Off.src = "/images/Button9Off.gif";
   
   Button10On = new Image(29, 39); Button10On.src = "/images/Button10On.gif";
   Button10Off = new Image(29, 39); Button10Off.src = "/images/Button10Off.gif";
   
   Button11On = new Image(29, 39); Button11On.src = "/images/Button11On.gif";
   Button11Off = new Image(29, 39); Button11Off.src = "/images/Button11Off.gif";
   
   Button12On = new Image(29, 39); Button12On.src = "/images/Button12On.gif";
   Button12Off = new Image(29, 39); Button12Off.src = "/images/Button12Off.gif";
}

function ChangeImage(imagename, newimage) {

   if (document.images) {
      eval("document." + imagename + ".src = " + newimage + ".src")
   }
   return true;
}

