function Signup() {
	
	the_form=document.signup_form;
	
	if (!ets_ValidEmail(the_form.Email.value)) {
		ets_ShowMessage("I think you mistyped your email address. The one you entered does not appear to be valid.", "Please check the email address you entered");
		the_form.Email.focus();
		the_form.Email.select();
		return false;
	}
	
	var target = '/email/signup.php?';
	target += 'listEmail=' + the_form.Email.value;
	target += '&listJoinDate=' +the_form.today.value;
	target += '&key=' + the_form.key.value;
	
	the_form.Email.value = "working...";
	
	
	// what to do on reply	
	reply = SignupReply;
	
	ets_AjaxSubmit(target);
}


function SignupReply() {
	document.signup_form.Email.value = "";
	TextboxOff(document.signup_form.Email,'EMAIL ADDRESS');
	ets_ShowMessage(responseText);
	responseText = "";
}