﻿// JScript File

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("popout");


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', '');
}
   }
  }
 }
}
function moverOut(){
  	this.className=this.className.replace(" over", "");
}

/* POPUP FUNCTION */
function NewFocusNetWindow(windowName) {
mypage = "about:blank";
w = 795;
h = 500;

scrolls=1;

status=1;
t=1;

var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scrolls+',status='+status+',toolbar='+t+',resizable'
win = window.open(mypage, windowName, winprops)




win.focus();  
return true;
}
// End -->

//BEGIN FUNCTION NewWindow
function NewWindow(mypage, myname, w, h, scroll, status, t) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',status='+status+',toolbar='+t+',resizable'
win = window.open(mypage, myname, winprops)
}
//END FUNCTION NewWindow
