<!--

  if (document.images)
   {
     pic1on= new Image(163,343);
     pic1on.src="images/home_bot2b_on.jpg";
     pic2on= new Image(157,343);
     pic2on.src="images/home_bot3b_on.jpg";
     pic3on= new Image(163,343);
     pic3on.src="images/home_bot4b_on.jpg";

     pic1off= new Image(163,343);
     pic1off.src="images/home_bot2b.jpg";
     pic2off= new Image(157,343);
     pic2off.src="images/home_bot3b.jpg";
     pic3off= new Image(163,343);
     pic3off.src="images/home_bot4b.jpg";

  }

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;
    }
 }

//-->
