
/* rollover*/
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("menu");
		//alert(navRoot.nodeName);
		if (navRoot != null)
		{
			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;

var PopupWindow;

function OpenWindow(url)
{
	if ((PopupWindow == null) || (PopupWindow.closed))
	{
		
		PopupWindow=window.open(url, "", "height=615,width=750");
	}
	else
	{
		PopupWindow.href = url;
		PopupWindow.focus();
	}
	
}
