//script for pop up windows
function NewWindow(mypage, myname, w, h, tool, scroll) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',toolbar='+tool+',scrollbars='+scroll+',resizable'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { 
		win.window.focus(); 
	}
}

<!-- Hide from older browsers

if (document.images) {
   var home_off = new Image();
   home_off.src = "images/menuHome.jpg";
   var home_on = new Image();
   home_on.src = "images/menuHome_Over.jpg";

   var locations_off = new Image();
   locations_off.src = "images/menuLocations.jpg";
   var locations_on = new Image();
   locations_on.src = "images/menuLocations_Over.jpg";

   var services_off = new Image();
   services_off.src = "images/menuServices.jpg";
   var services_on = new Image();
   services_on.src = "images/menuServices_Over.jpg";
   
   var shipping_off = new Image();
   shipping_off.src = "images/menuShipping.jpg";
   var shipping_on = new Image();
   shipping_on.src = "images/menuShipping_Over.jpg";

   var about_off = new Image();
   about_off.src = "images/menuAbout.jpg";
   var about_on = new Image();
   about_on.src = "images/menuAbout_Over.jpg";

   var news_off = new Image();
   news_off.src = "images/menuNews.jpg";
   var news_on = new Image();
   news_on.src = "images/menuNews_Over.jpg";
            
}

   function activate(imgName) {
     if (document.images) {
       if ( eval(imgName + "_on.complete") ) {
         document.images[imgName].src = eval(imgName + "_on.src");
       }
     }
   }

   function deactivate(imgName) {
     if (document.images) {
       if ( eval(imgName + "_off.complete") ) {
         document.images[imgName].src = eval(imgName + "_off.src");
       }
     }
   }

// End script hiding -->
<!--//--><![CDATA[//><!--

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;

//--><!]]>
