<!--

  if (document.images)
   {
     pic32on= new Image(135,180);
     pic32on.src="../images/colour/w_after.jpg"; 

     pic32off= new Image(135,180);
     pic32off.src="../images/colour/w_before.jpg"; 
	 
		 
	 
   }

function lightup2(imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName+"on.src");
      document[imgName].src=imgOn;
    }
 }

function turnoff2(imgName)
 {
   if (document.images)
    {
      imgOff=eval(imgName+"off.src");
      document[imgName].src=imgOff;
    }
 }
 //----->

