function validate_form()
{
	if(!regex_check(/([\w\.]+)?\w+\w+/i,form.name.value,'Please enter your name for when we contact you.')) return false;
	else if(!regex_check(/^([\d\s]+|^[^@]+@[^\.]+\..+)$/,form.contact.value,'Please enter a valid phone or e-mail address')) return false;
return true;
}