﻿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;

function addToBookMarks() 
{

if(document.all) 
window.external.AddFavorite(location.href,document.title);

else if(window.sidebar)window.sidebar.addPanel (document.title,location.href,''); 
}

function OpenPopUp(url)
{
window.open(url,"","width=300px, height=350px, left=45, top=15, scrollbars=no, menubar=no");
}