	// ****************************************************** //
	// ** Begin Contact Form Validation
	// ****************************************************** //

function checkcontact()
{
	
	if (document.contactForm.name.value == '')
	{
		// Title Empty
		alert('You must enter a Name');
		document.contactForm.name.focus()
		return false;
	}

	else if (!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.contactForm.email.value)))
	{
		// Email Empty or Incorrect
		alert('You must enter a valid Email address');
		document.contactForm.email.focus()
		return false;
	}
	else if (document.contactForm.message.value == '')
	{
		// Message Empty
		alert('You must enter a Message');
		document.contactForm.message.focus()
		return false;
	}	
	// If the script gets this far through all of your fields
	// without problems, it's ok and you can submit the form
	return true;
}
