function validateForm() 
{
	if (document.login.customer_id)
	{
               	if (document.login.customer_id.value == "" || document.login.customer_id.value == "Username") 
      		{
               		alertuser (document.login.customer_id,"Please enter a userid.");
               		return false;
       		}
	}
            
	if (document.login.password)
	{
       		if (document.login.password.value == "" || document.login.password.value == "password") 
       		{
              		alertuser (document.login.password,"Please enter a password.");
               		return false;
       		}
      		return true;
      	}
	function alertuser(field,msg) 
	{
               	alert(msg);
	}
}

function getmyPassword()
{
         popupWin = ""
          window.open('http://www.fantasycup.com/forgot_password.php','forgotpasswd','status=yes,scrollbars=yes,resizable=yes,width=500,height=400')
}
	        
function MM_openBrWindow(theURL,winName,features) 
{
	window.open(theURL,winName,features);
}
