$(document).ready(function(){
	$('#masterFooter .subscribe form').bind('submit', function(){
		if (!objValidateFocus(document.subscribe.Email,"notEmpty")) {
			alert("Please enter your email address.");
			return (false);
		} else {
			if (!objValidateFocus(document.subscribe.Email,"emailStd")) {
				alert("The email address entered does not appear to be valid.  Please check the address and try again.");
				return (false);
			}	
		}
		$('#masterFooter .subscribe form').attr('action', 'formmail.php');
		return true;	
	});
});