// JavaScript Document
	function TopLoginCheck() {
		var reBlank = /^\s*$/;	
		
		var strValue = document.frmtoplogin.topemail.value; 
		if (reBlank.test(strValue)){ 
			alert('Please enter your e-mail address.');  
			document.frmtoplogin.topemail.focus(); 
			return false; } 

		var strValue = document.frmtoplogin.toppassword.value; 
		if (reBlank.test(strValue)){ 
			alert('Please enter your password.');  
			document.frmtoplogin.toppassword.focus(); 
			return false; } 
	}	

	function TopShowPasswordHint() {
		var windowSettings="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,"+
							"resizable=no,width=480,height=330,top=200,left=250";
		var strEmail = document.frmtoplogin.topemail.value;	
		window.open('passwordhint.asp?u=' + strEmail,'',windowSettings);
	}
