/* For pop-up in IE */
	startList = function() {
	/*alert("startList called");
	return false;*/	if (document.all&&document.getElementById) {		listRoot = document.getElementById("list");		for (i=0; i<listRoot.childNodes.length; i++) {			node = listRoot.childNodes[i];			if (node.nodeName=="LI") {				node.onmouseover=function() {				this.className+=" over";				}				  node.onmouseout=function() {				  this.className=this.className.replace(" over", "");				}			 }		}	}}

function newWindow(PopUp) {
	popUp = window.open (PopUp, 'pop');
	popUp.focus();
}