browser_name = navigator.appName;
browser_version = parseFloat(navigator.appVersion);
if (browser_name == "Netscape" && browser_version >= 3.0)
{
version = "ok";
}
else if (browser_name == "Microsoft Internet Explorer" && browser_version >= 3.0)
{
version = "ok";
}
else
{
version = "bad";
}
if (version == "ok") {

 firmaon = new Image();
 firmaon.src="images/index/r5_firma1.gif";
 firmaoff = new Image();
 firmaoff.src="images/index/r5_firma.gif";

 ofertaon = new Image();
 ofertaon.src="images/index/r5_oferta1.gif";
 ofertaoff = new Image();
 ofertaoff.src="images/index/r5_oferta.gif";

 kontakton = new Image();
 kontakton.src="images/index/r5_kontakt1.gif";
 kontaktoff = new Image();
 kontaktoff.src="images/index/r5_kontakt.gif";
 
 pokazon = new Image();
 pokazon.src="images/index/r5_pokaz1.gif";
 pokazoff = new Image();
 pokazoff.src="images/index/r5_pokaz.gif";

 

 

 function imgact(imgName) {
   if (version == "ok")
   {
     imgOn = eval(imgName + "on.src");
     document [imgName].src = imgOn;
   }
 }


 function imgnoact(imgName) {
   if (version == "ok")
   {
     imgOff = eval(imgName + "off.src");
     document [imgName].src = imgOff;
   }
 }

}
