function verifForm()
{
	if (document.contact.name.value.length < 2 || document.contact.fname.value.length < 2 )
	{
		alert("Please fill in all blanks where there is a star.");
		return false;
	}
	if (!verifEmail(document.contact.email.value))
	{
		alert("Please enter a valide email address");
		return false;
	}
	return true;
}
