<!--

  if (document.images)
   {
     pic1on= new Image(138,55);
     pic1on.src="images/MEDIA_ON.gif";  
     pic2on= new Image(138,55);
     pic2on.src="images/DIRECTIONS_ON.gif";
     pic3on= new Image(138,55);
     pic3on.src="images/SPONSORS_ON.gif"; 
     pic4on= new Image(138,55);
     pic4on.src="images/uoclinks_on.gif";  
     pic5on= new Image(138,55);
     pic5on.src="images/COUPON_ON.gif"; 
        


     pic1off= new Image(138,55);
     pic1off.src="images/MEDIA_OFF.gif";  
     pic2off= new Image(138,55);
     pic2off.src="images/DIRECTIONS_OFF.gif";
     pic3off= new Image(138,55);
     pic3off.src="images/SPONSORS_OFF.gif"; 
     pic4off= new Image(138,55);
     pic4off.src="images/uoclinks.gif";
pic5off= new Image(138,55);
     pic5off.src="images/COUPON_OFF.gif";  
         

 

   }

function lightup(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;
    }
 }

//-->


