			<!--
			/*****************************************************************/
			// Process_OnClickLogin2; Force a 'Submit' without the 'Submit' button
			// 
			// It will validate the Username and password on the client side to 
			// ensure valid entry before hitting the server.
			//
			// This script is called from the following webpages on DeMarche.com
			//      loginsubscribe/login.asp

			function Process_OnClickLogin2()
			{
				var bRtrn = true;
				var sUsername = new String(document.UserInfo.item("Username").value);
				var sPassword = new String(document.UserInfo.item("Password").value);
				var asErrors = new Array();

		
			// Validate the parameters
			if (sUsername.length < 3)// || !(isEmail(sUsername))
			{
				bRtrn = false;
				asErrors[asErrors.length] = "";
				asErrors[asErrors.length] = "User Name requires more information. If you are a Client or member of the Manager Institute, please contact Cole Price at x349 for assistance.";
			}
			if (sPassword.length < 6)
			{
				bRtrn = false;
				asErrors[asErrors.length] = "Password requires more information.";
			}

			// - Process request ?
			if (!bRtrn)
			{
				Validate_DisplayErrors(asErrors);
			}
		
			return (bRtrn);
			}
			
			//-->