<!--/

	function isValidEmail(str) {
	   return (str.indexOf(".") >= 1) && (str.indexOf("@") > 0);
	}	
	
	function ValidateEmailForm(){
		var FORMn = document.UpToDateForm;
						
			var ErrorMessage = '';
			
			var email;
			email = document.UpToDateForm['cm-399980-399980'].value;
			
			if (email == '') {
				ErrorMessage = "Please supply your Email Address, so we can get back to you.";
				alert (ErrorMessage);
				return;
			}

			if (! isValidEmail(email)){
				ErrorMessage = "Oops! Looks like your email address isn't valid.";
				alert (ErrorMessage);
				return;				
			}		
		
		FORMn.submit();
	}
	
	function ClearContent(){
		document.UpToDateForm['cm-399980-399980'].value = "";
	}
	
//-->