/* Used on the submit of the form to verify that there is no error */
function asError()
{	
	var m_asError = false;
	
	if (isEmpty(document.laFrm.courriel.value))
	{
		document.getElementById("forgottenPwdEmailMessage").innerHTML = FORGOTTENPWD_EMAIL_EMPTY;
		m_asError = true;
	}
	else
		document.getElementById("forgottenPwdEmailMessage").innerHTML = "";
			
	return !m_asError;
}