
<!--
var newwindow;
function PopUp(theURL,winName,features) { //v2.0
  newwindow=window.open(theURL,winName,features);
}
//-->




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;
};


function confirmSubmit(msg)

{
 
var agree=confirm(msg);
if (agree)
	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 = '';
			}
}
