function NotifyMe(){
	var Form = document.forms.Notifications;
	if(Trim(Form.ZipCode.value) == ""){
		alert("Please enter your zip code");
		Form.ZipCode.focus();
		return false;
	}
	if(!IsEmail(Trim(Form.Email.value))){
		alert("Please provide a valid email address");
		Form.Email.focus();
		Form.Email.select();
		return false;
	}
	Form.btnNotify.value = "One moment, please...";
	Form.btnNotify.disabled = true;
	AJAXRequest("/includes/notify.asp", "POST", Form, function(sResponse, aError){
		if(!aError){
			Form.reset();
			Fade("divNotifications_Success", 0, 5, 100);
			document.getElementById("divNotifications").style.display = "none";
			document.getElementById("divNotifications_Success").style.display = "block";
		}
		else{
			alert(aError);
			Form.btnNotify.value = "Notify me!";
			Form.btnNotify.disabled = false;
		}
	});
	return false;
}
