<!-- hide from old browsers

//set holt variables
var version = "1";
var work = false;

// browser test:
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
if (browserName == "Netscape" && browserVer >= 3) version = "3";
else if (browserName == "Microsoft Internet Explorer" && browserVer >= 4) version = "4";
else version = "1";

// Does it work in n3/4 ?
if(version =="3") {
        work = true;
}

// Does it work in ie4 ?
if(version =="4") {
        work = true;
}

// mouseover control

        if (work == true) {



image1= new Image(80,20);
image1.src = "images/tophome.gif";
image1on = new Image(80,20);
image1on.src = "images/tophomeon.gif";
image2= new Image(100,20);
image2.src = "images/topclient.gif";
image2on = new Image(100,20);
image2on.src = "images/topclienton.gif";
image3= new Image(90,20);
image3.src = "images/topbook.gif";
image3on = new Image(90,20);
image3on.src = "images/topbookon.gif";
image4= new Image(75,20);
image4.src = "images/topcontact.gif";
image4on = new Image(75,20);
image4on.src = "images/topcontacton.gif";
image5= new Image(110,20);
image5.src = "images/topopenday.gif";
image5on = new Image(110,20);
image5on.src = "images/topopendayon.gif";

}


function on(name)   {
                        if (work == true) {
        document[name].src = eval(name + "on.src");
                }
}
function off(name)  {
                        if (work == true) {
        document[name].src = eval(name + ".src");
                }
}


function a(txt) {
                        if (work == true) {
        self.status = txt
        }
}

function b() {
                if (work == true) {
        self.status = ""
        }
}

// - end hiding -->


