<!--// 

  browserName = navigator.appName;
  browserVer = parseInt(navigator.appVersion);
  version = "no";
  if (browserName == "Netscape" && browserVer >= 3) version = "ok";
  if (browserName == "Microsoft Internet Explorer" && browserVer >= 4) version = "ok";
  if (version == "ok")
  {
     button1on = new Image();
     button1on.src = "1.gif";
     button1off = new Image();
     button1off.src = "1_po.gif";

     button2on = new Image();
     button2on.src = "2.gif";
     button2off = new Image();
     button2off.src = "2_po.gif";

     button3on = new Image();
     button3on.src = "3.gif";
     button3off = new Image();
     button3off.src = "3_po.gif";

     button4on = new Image();
     button4on.src = "4.gif";
     button4off = new Image();
     button4off.src = "4_po.gif";

     button5on = new Image();
     button5on.src = "5.gif";
     button5off = new Image();
     button5off.src = "5_po.gif";

     button6on = new Image();
     button6on.src = "6.gif";
     button6off = new Image();
     button6off.src = "6_po.gif";

     button7on = new Image();
     button7on.src = "7.gif";
     button7off = new Image();
     button7off.src = "7_po.gif";

     button8on = new Image();
     button8on.src = "8.gif";
     button8off = new Image();
     button8off.src = "8_po.gif";

     button9on = new Image();
     button9on.src = "9.gif";
     button9off = new Image();
     button9off.src = "9_po.gif";
	
     button10on = new Image();
     button10on.src = "10.gif";
     button10off = new Image();
     button10off.src = "10_po.gif";

     button11on = new Image();
     button11on.src = "11.gif";
     button11off = new Image();
     button11off.src = "11_po.gif";
    
     button12on = new Image();
     button12on.src = "12.gif";
     button12off = new Image();
     button12off.src = "12_po.gif";
  }

function select(imgName) 
{
   if (version == "ok")
   {
     imgOn = eval(imgName + "off.src");
     document [imgName].src = imgOn;
   }

}

function deselect(imgName) 
{
   if (version == "ok")
   {
     imgOff = eval(imgName + "on.src");
     document [imgName].src = imgOff;
   }
}

//window.open("http://www.biezanow.net/~pablo/fajfer/info.htm","Pochod","width=700, height=270, toolbar=no")
-->
