function checkuserforgot()	{
	cleardivs();
	if(document.frm_forgot_password.fplogin.value == '' && document.frm_forgot_password.fpemail.value == '')
	{
		document.getElementById("div_msg").innerHTML = "<img src='http://img.makaan.com/images/alert.gif' width='10' align='absmiddle' height='10' vspace='3' border=0>&nbsp;Please enter  your username or email";
		document.frm_forgot_password.fplogin.focus();
		return false;
	}else if(document.frm_forgot_password.fpemail.value != '' && isValidEmail(document.frm_forgot_password.fpemail.value) == false)
	{
		document.getElementById("div_msg").innerHTML = "<img src='http://img.makaan.com/images/alert.gif' width='10' align='absmiddle' height='10' vspace='3' border=0>&nbsp;Invalid e-mail address ! Please re-enter.";
		document.frm_forgot_password.fpemail.focus();
		return false;
	}
	document.getElementById('fsubmit').disabled=true;
	document.getElementById('fsubmit').src=IMG_SERVER + '/images/submit-button-deact.gif';
	return true;
}
