// JavaScript Document
function validation()
{
	str=document.applicant_login.username.value;
	if(str=="")
	{
	 alert("Please enter user name");
	 return false;
	}
	/*else
	{
	
	
	for(i=0;i<str.length;i++)
	{
		if(str.charCodeAt(i)<75||str.charCodeAt(i)>121)
		{
			alert("please enter correct user name");
			return false;
			
		}
	}
	}*/
	str2=document.applicant_login.password.value;
	if(str2=="")
	{
		alert("Enter password");
		return false;
	}
	
	
  


}