function chklogin(thisform)
		{
			if (thisform.email.value == "" || thisform.email.value.indexOf('@',0) == -1 || thisform.email.value.indexOf('.',0) == -1) 
				 {
				   alert ("Please enter a valid E-mail Address") ;
				   thisform.email.focus() ;
				   return false ;
				 }
	 
	 if (thisform.passwd.value == "")
			{
				alert("Please enter your password");
				thisform.passwd.focus();
				return false;
			}
	}

function printIt() 
{ 
window.print(); 
} 