function forgotpassword_checkFields()
{var oEmail=document.getElementById("hl_email");var sEmail=trim(oEmail.value);if(sEmail.length==0)
{alert(trans.get('PLEASE_ENTER_AN_EMAIL_ADDRESS_MSG'));oEmail.focus();return false;}
else if(!validate_isEmail(sEmail))
{alert(trans.get('PLEASE_ENTER_A_VALID_EMAIL_ADDRESS_MSG'));oEmail.focus();return false;}
return form_showLoading();}