// JavaScript Document


function validate(){

if(document.frmrecruiterslogin.uname.value=='')
{
alert('Please Enter Username');

document.frmrecruiterslogin.uname.focus();
return false;
}if(document.frmrecruiterslogin.pwd.value=='')
{
alert('Please Enter Password');

document.frmrecruiterslogin.pwd.focus();
return false;
}
}
function forgot()
{
	//window.open("forgotpassword.php" 'width=200px height=200px');
	
	myRef = window.open("forgotpasswordR.php",'mywin',
'left=20,top=20,width=300,height=300,resizable=0');


}


