function validater(thing)
{
	var errors = "";
	if (thing.email.value == "") errors += "Please enter your email address\n";
	if (errors != "") {
		alert(errors);
		return false;
	} else {
		return true;
	}
}
