// JavaScript Document

	function Checkemail() {
		if(document.emailform.Email.value == "") {
			alert("You must enter an email address to be added to the list.");
			return false;
		}
	}
