// Nav Script
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;

// Pop Window Script
		function isWin(){
			if (navigator.appVersion.indexOf("Win") != -1)	return true;
			else return false;
		}

		function isIE(){
			if (navigator.appName == "Microsoft Internet Explorer") return true;
			else return false;
		}

		function isIEPC(){
			if (isWin() && isIE()) return true;
			else return false;
		}

		function popit(page,winname,width,height,scroll){
    		winname = window.open(page,winname,'width=' + width + ',height=' + height + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
			if (isIEPC() != 1) {
				winname.focus();
			}
		}