// JavaScript Document
function validate()
	{
		        var first =document.form1.email;
				if(first.value=='')
				{		
				alert("Email Address Should Not Be Blank ");
				first.focus();
				return false;
				}
				var last=document.form1.txt_password;
				if (last.value=='') 
				{
				alert("Password Should Not Be Blank");
				last.focus();
				return false;
				}	
	} 