
<!--
function PopUp(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->


function confirm_del(){
var answer=confirm("Please confirm you would like to delete this item.")
if(answer)
return true;
else
return false;
}


function toggle(obj) {
	var el = document.getElementById(obj);
	if ( el.style.display != 'none') {
		el.style.display = 'none';
	}
	else {
			el.style.display = '';
			}
}


function checkPw(form) {
pw1 = admin.newpassword.value;
pw2 = admin.confirmpassword.value;


if (pw1 != pw2) {
alert ("\nYou did not enter the same password twice. Please re-enter your password.")
return false;
}
else return true;
};


<!--//--><![CDATA[//><!--
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;
//--><!]]>