	function CheckEmail(ctl) {
		Email = ctl.value;
		if (Email == "") {
			alert("Please enter your email address.")
			ctl.focus();
			return false;
		}
		return true;
	}

