<!--
	//CHANGE SUB-NAV ON ROLLOVER
	function ChangeDiv(id) {
	var currentid = document.Form1.CurrentID.value 
	if (id != currentid) {
	document.getElementById(id).style.visibility = "visible";
	document.getElementById(currentid).style.visibility = "hidden";
	document.Form1.CurrentID.value = id
	}
	else
	document.getElementById(currentid).style.visibility = "visible"	
}
//-->
<!--
	//LOGIN - VALIDATE LOGIN FORM FIELDS
	function ValLogIn() {
	var username = document.FormLogIn.UserName.value;
	var password = document.FormLogIn.Password.value;
	var surl = '../scripts2/userverifyclient.asp?UserName=' + username
	+ '&Password=' + password;
	if (username == "") 
	{
	alert ("Please enter a value for the \"User Name\" field.");
	document.FormLogIn.UserName.focus();
	return (false);
	}
	if (password == "")
	{
	alert("Please enter a value for the \"Password\" field.");
	document.FormLogIn.Password.focus();
	return (false);
	}
	location.href = surl;
	return (true);
}
//-->
<!--
	//OPEN POP-UP
	function PopWin(NewLocation, HVal, WVal) {
	window.open(NewLocation, "NewWindow", "left=50,top=50,width=" + HVal 
	+ ",height=" + WVal + ",scrollbars=yes,status=no,toolbar=no");	
}
//-->
<!--
	//GO TO NEW LOCATION IN PARENT WINDOW
	function GoTo(NewLocation) {
	self.opener.location = NewLocation;
	parent.close();	
	}
//-->