<!--
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
   if (browserVer >= 3) version = "ok";
   else version = "bad"

   if (version == "ok") {

bar1on = new Image(); bar1on.src = "images/przyc1d.gif";
bar1off = new Image(); bar1off.src = "images/przyc1g.gif";
bar2on = new Image(); bar2on.src = "images/przyc2d.gif";
bar2off = new Image(); bar2off.src = "images/przyc2g.gif";
bar3on = new Image(); bar3on.src = "images/przyc3d.gif";
bar3off = new Image(); bar3off.src = "images/przyc3g.gif";
bar4on = new Image(); bar4on.src = "images/przyc4d.gif";
bar4off = new Image(); bar4off.src = "images/przyc4g.gif";
bar5on = new Image(); bar5on.src = "images/przyc5d.gif";
bar5off = new Image(); bar5off.src = "images/przyc5g.gif";
bar6on = new Image(); bar6on.src = "images/przyc6d.gif";
bar6off = new Image(); bar6off.src = "images/przyc6g.gif";
bar7on = new Image(); bar7on.src = "images/przyc7d.gif";
bar7off = new Image(); bar7off.src = "images/przyc7g.gif";
bar8on = new Image(); bar8on.src = "images/przyc8d.gif";
bar8off = new Image(); bar8off.src = "images/przyc8g.gif";
bar9on = new Image(); bar9on.src = "images/przyc9d.gif";
bar9off = new Image(); bar9off.src = "images/przyc9g.gif";
bar10on = new Image(); bar10on.src = "images/przyc10d.gif";
bar10off = new Image(); bar10off.src = "images/przyc10g.gif";
bar11on = new Image(); bar11on.src = "images/przyc11d.gif";
bar11off = new Image(); bar11off.src = "images/przyc11g.gif";

   }

function img_act(imgName)  {
   if (version == "ok")   {
   imgOn = eval(imgName + "on.src");
   document [imgName].src = imgOn;
   }
}

function img_inact(imgName)   {
   if (version == "ok") {
   imgOff = eval(imgName + "off.src");
   document [imgName].src = imgOff;
   }
}


// -->
