<!--
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
version="n2"
if (browserName == "Netscape" && browserVer >= 3) version = "n3";
if (navigator.appName.substring(0,9) == "Microsoft" && browserVer >= 4) version = "n3";
if (version == "n3") {
button1 = new Image();
button1.src = "grafika/gora/przyciski/1.jpg";
button1_on = new Image();
button1_on.src = "grafika/gora/przyciski/1a.jpg";

button2 = new Image();
button2.src = "grafika/gora/przyciski/2.jpg";
button2_on = new Image();
button2_on.src = "grafika/gora/przyciski/2a.jpg";

button3 = new Image();
button3.src = "grafika/gora/przyciski/3.jpg";
button3_on = new Image();
button3_on.src = "grafika/gora/przyciski/3a.jpg";

button4 = new Image();
button4.src = "grafika/gora/przyciski/4.jpg";
button4_on = new Image();
button4_on.src = "grafika/gora/przyciski/4a.jpg";

button5 = new Image();
button5.src = "grafika/gora/przyciski/5.jpg";
button5_on = new Image();
button5_on.src = "grafika/gora/przyciski/5a.jpg";

button6 = new Image();
button6.src = "grafika/gora/przyciski/6.jpg";
button6_on = new Image();
button6_on.src = "grafika/gora/przyciski/6a.jpg";

button7 = new Image();
button7.src = "grafika/gora/przyciski/7.jpg";
button7_on = new Image();
button7_on.src = "grafika/gora/przyciski/7a.jpg";





}
function img_act(imgName)
{
if (version == "n3")
{
imgOn = eval(imgName + '_on.src');
document [imgName].src= imgOn
}
}
function img_inact(imgName)
{
if (version == "n3") {
imgOff = eval(imgName + ".src");
document [imgName].src= imgOff
}
}
// -->