function FormValidator(quickform) {
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(quickform.p_email.value)){
		return (true)
	}
	alert("Please enter a complete email address in the form: yourname@yourdomain.com with no spaces");
	quickform.p_email.focus();
	return (false)
}