// New Window Opener
shown=''
function OpenFile(url) {
if( shown=='' || shown.closed) {
	shown=window.open(url,'OpenFile','scrollbars=yes,status=no, high,width=500,height=500');
}
else{ 
	shown.close();
	shown=window.open(url,'OpenFile','scrollbars=yes,status=no, high,width=500,height=500');
}
}

// Window Closer
function clickclose ()
{
close();
}

// Main Drop Down Menu
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("navBar");
		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;