brName = navigator.appName;
brVer = parseFloat(navigator.appVersion);
// brVer = navigator.appVersion;
version = "good";
version_window = "good";
if (brName == "Microsoft Internet Explorer" && brVer < 4 ) {
	version = "dweeb";
	version_window = "dweeb_too";
}
if (brName == "Netscape" && brVer < 3.03) {
	version = "dweeb";
}
if (brName == "Netscape" && brVer < 4) {
	version_window = "dweeb_too";
}
if (version != "dweeb") {
homeon = new Image();
homeon.src = "graphics/home_on.gif";
webcamson = new Image();
webcamson.src = "graphics/webcams_on.gif";
archiveson = new Image();
archiveson.src = "graphics/archives_on.gif";
historyon = new Image();
historyon.src = "graphics/history_on.gif";
presson = new Image();
presson.src = "graphics/press_on.gif";
homeoff = new Image();
homeoff.src = "graphics/home_off.gif";
webcamsoff = new Image();
webcamsoff.src = "graphics/webcams_off.gif";
archivesoff = new Image();
archivesoff.src = "graphics/archives_off.gif";
historyoff = new Image();
historyoff.src = "graphics/history_off.gif";
pressoff = new Image();
pressoff.src = "graphics/press_off.gif";
}
        function img_act(imgName) {
			if (version != "dweeb") {
                        imgOn = eval(imgName + "on.src");
                        document [imgName].src = imgOn;
			}
        }

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