//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 intro_off = new Image();
   intro_off.src = "images/navIntroduction.jpg";
   var intro_on = new Image();
   intro_on.src = "images/navIntroduction_over.jpg";

   var elmer_off = new Image();
   elmer_off.src = "images/navElmer.jpg";
   var elmer_on = new Image();
   elmer_on.src = "images/navElmer_over.jpg";

   var gov_off = new Image();
   gov_off.src = "images/navGovernment.jpg";
   var gov_on = new Image();
   gov_on.src = "images/navGovernment_over.jpg";
   
   var com_off = new Image();
   com_off.src = "images/navCommunity.jpg";
   var com_on = new Image();
   com_on.src = "images/navCommunity_over.jpg";

   var legacy_off = new Image();
   legacy_off.src = "images/navLegacy.jpg";
   var legacy_on = new Image();
   legacy_on.src = "images/navLegacy_over.jpg";

   var contacts_off = new Image();
   contacts_off.src = "images/navContacts.jpg";
   var contacts_on = new Image();
   contacts_on.src = "images/navContacts_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;

//--><!]]>