// This is the standard Macromedia workaround for the Netscape resize bug. Works nicely, so why change it?// Reloads the window if Nav4 resized.function MM_reloadPage(init) {    if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();}MM_reloadPage(true);//Static Images - Preloader//main01 = new Image(344,104);//main01.src = "images/mainimage01.jpg";//Active Images - Preloader For Rollover.homeon = new Image(63,32);						homeon.src = "images/homeon.gif";solutionson = new Image(88,32);						solutionson.src = "images/solutionson.gif";productson = new Image(86,32);						productson.src = "images/productson.gif";newson = new Image(62,32);						newson.src = "images/newson.gif";linkson = new Image(57,32);						linkson.src = "images/linkson.gif";abouton = new Image(86,32);						abouton.src = "images/abouton.gif";sitemapon = new Image(85,32);						sitemapon.src = "images/sitemapon.gif";loginon = new Image(128,32);						loginon.src = "images/loginon.gif";//Inactive Images - Preloader For Rollover.homeoff = new Image(63,32);						homeoff.src = "images/homeoff.gif";solutionsoff = new Image(88,32);						solutionsoff.src = "images/solutionsoff.gif";productsoff = new Image(86,32);						productsoff.src = "images/productsoff.gif";newsoff = new Image(62,32);						newsoff.src = "images/newsoff.gif";linksoff = new Image(57,32);						linksoff.src = "images/linksoff.gif";aboutoff = new Image(86,32);						aboutoff.src = "images/aboutoff.gif";sitemapoff = new Image(85,32);						sitemapoff.src = "images/sitemapoff.gif";loginoff = new Image(128,32);						loginoff.src = "images/loginoff.gif";//Rollover Function - Mouse Over.function imgOn(imgName) {						  if (document.images) {    document[imgName].src = eval(imgName + "on.src");}}//Rollover Function - Mouse Out.function imgOff(imgName) {						  if (document.images) {    document[imgName].src = eval(imgName + "off.src");}}//Function to open a new window for pages that appear as popups.function newWindow(page) {OpenWin = this.open(page, "CtrlWindow", "toolbar=no,directories=no,menubar=no,location=no,scrollbars=yes,width=740,height=560,resizable=no");}//Function to open a new window for the links to other sites.function newSiteLink(page) {OpenWin = this.open(page, "CtrlWindow", "toolbar=yes,directories=yes,menubar=yes,location=yes,scrollbars=yes,width=800,height=600,resizable=yes");}//Password protection functionfunction Login(){var done=0;var username=document.thisForm.username.value;//username=username.toLowerCase();var password=document.thisForm.password.value;//password=password.toLowerCase();if (username=="mark" && password=="perryman") { window.location="loginCust01.html"; done=1; }if (username=="isabelle" && password=="egger") { window.location="loginCust01.html"; done=1; }if (username=="shs" && password=="marketing") { window.location="loginCust01.html"; done=1; }if (done==0) { alert("Invalid login!"); }}