// JavaScript Documentvar newwindow;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;window.name = " currentWindowName "; function popmap(url){ 	newwindow=window.open(url,'name','height=499,width=499,left=100,top=100,directories=no,resizable=no,scrollbars=no,status=no,toolbar=no');	if (window.focus) {newwindow.focus()} }function swap(imageName,fileName)	{		if(document.images)window.document[imageName].src=fileName;		}function popit(url){	newwindow=window.open(url,'name','height=400,width=465,left=100,top=100,scrollbars=yes,resizeable=yes,toolbar=no,directories=no');	if (window.focus) {newwindow.focus()}}