var origWidth = window.innerWidth; var origHeight = window.innerHeight; function reloadPage() {//Fixes funky netscape behavior when window is resized if (navigator.appName=="Netscape") { if (origWidth != window.innerWidth || origHeight != window.innerHeight) { location.reload(); } } } if (document.images){ img1on = new Image( ); img1on.src = "/common/images/template/nav-1-on.gif"; img1off = new Image( ); img1off.src = "/common/images/template/nav-1-off.gif"; img2on = new Image( ); img2on.src = "/common/images/template/nav-2-on.gif"; img2off = new Image( ); img2off.src = "/common/images/template/nav-2-off.gif"; img3on = new Image( ); img3on.src = "/common/images/template/nav-3-on.gif"; img3off = new Image( ); img3off.src = "/common/images/template/nav-3-off.gif"; img4on = new Image( ); img4on.src = "/common/images/template/nav-4-on.gif"; img4off = new Image( ); img4off.src = "/common/images/template/nav-4-off.gif"; img5on = new Image( ); img5on.src = "/common/images/template/nav-5-on.gif"; img5off = new Image( ); img5off.src = "/common/images/template/nav-5-off.gif"; img6on = new Image( ); img6on.src = "/common/images/template/nav-6-on.gif"; img6off = new Image( ); img6off.src = "/common/images/template/nav-6-off.gif"; img7on = new Image( ); img7on.src = "/common/images/template/nav-7-on.gif"; img7off = new Image( ); img7off.src = "/common/images/template/nav-7-off.gif"; img8on = new Image( ); img8on.src = "/common/images/template/nav-8-on.gif"; img8off = new Image( ); img8off.src = "/common/images/template/nav-8-off.gif"; img9on = new Image( ); img8on.src = "/common/images/template/nav-9-on.gif"; img9off = new Image( ); img8off.src = "/common/images/template/nav-9-off.gif"; } function imgAct(imgName) { if (document.images) { document[imgName].src = eval(imgName + "on.src"); } } function imgInact(imgName){ if (document.images) { document[imgName].src = eval(imgName + "off.src"); } }