function CheckForm_password() { 
var errorMsg = "";

	with (document.forgot_password) {

	
		//Check for an e-mail address and that it is valid(document.clients.Email.value == "") || 
	if (((email.value.indexOf("@",0) == - 1 || email.value.indexOf(".",0) == - 1))) { 
		errorMsg += "\nType the valid e-mail address that exists in the system";
	}
	
	
	if (errorMsg != ""){
		msg = "____________________________________\n\n";
		msg += "Your form has not been submitted because\n";
		msg += "you did not fill in all the required fields.\n";
		msg += "Please complete the following fields.\n";
		msg += "___________________________________\n\n";
		
		errorMsg += alert(msg + errorMsg + "\n\n");
		return false;
	}
	return true;
	}
}
