function GetPass()
{	
	var CCVal = document.login.username.value;		
	if (CCVal == "")
	{
		alertsay = "A valid login must be entered before your information can be sent."
		alert(alertsay);
	document.login.username.focus();
	return (false);
	}	
	else
	{
	window.open('retPass.cfm?getlogininfo='+document.login.username.value,'passWin','width=300,height=150,scrollbars=no,resizable=no,status=0');
	return (false);
	}
}


function NullCheck()
{	
	var CCVal = document.login.username.value;		
	if (CCVal == "")
	{
		alertsay = "A login must be entered before continuing."
		alert(alertsay);
	document.login.username.focus();
	return (false);
	}	

	var CCVal = document.login.password.value;		
	if (CCVal == "")
	{
		alertsay = "A password must be entered before continuing."
		alert(alertsay);
	document.login.password.focus();
	return (false);
	}	
}
