
		<!--
//   This script is called from the following webpages in DeMarche.com:
//          subscribe_forgot.asp
//          Corp_rating_forgot.asp

			// Process_onClickLogin; Force a 'Submit' without the 'Submit' button
			function Process_OnClickEmailLogin()
			{
				var bRtrn = true;
				var asErrors = new Array();

				var sEMail = new String(document.UserInfo.item("EMail").value);

				// Validate the parameters
				if (sEMail.length < 1)
				{
					bRtrn = false;
					asErrors[asErrors.length] = "<EMail> : requires more information.";
				}

				// - Process request ?
				if (!bRtrn) Validate_DisplayErrors(asErrors);
		
				return (bRtrn);
			}
		//-->

