<!--
  if (document.images)
   {
     pic1on= new Image(164,31);
     pic1on.src="img/reservation1.png";
     pic1off= new Image(164,31);
     pic1off.src="img/reservation.png";
	 
	 pic2on= new Image(164,31);
     pic2on.src="img/rezerwacja1.png";
     pic2off= new Image(164,31);
     pic2off.src="img/rezerwacja.png";
   }

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;
    }
 }
//-->