// JavaScript Document


function validatefrmforgot(){

if(document.frmforgot.uname.value=='')
{
alert('Please Enter Username');

document.frmforgot.uname.focus();
return false;
}

if(document.frmforgot.email.value=='')
{
alert('Please Enter Email');

document.frmforgot.email.focus();
return false;
}
}


function forgot()
{
	//window.open("forgotpassword.php" 'width=200px height=200px');
	
	myRef = window.open("forgotpassword.php",'mywin','left=20,top=20,width=400,height=200,resizable=0');
}

