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

function checkformemail()
{
	
	if (document.checkform.name.value == 'Your Name')
	{
		// Name Empty
		alert('You must enter a Name');
		document.checkform.name.focus()
		return false;
	}
	else if (document.checkform.email.value == 'Your Email Address')
	{
		// Forename Empty
		alert('You must enter an Email Address');
		document.checkform.email.focus()
		return false;
	}
	else if (!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.checkform.email.value)))
	{
		// Email Empty or Incorrect
		alert('The Email address you entered is not valid, please try again');
		document.checkform.email.value = "";
		document.checkform.email.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;
}


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


function clickClearName(Name, defaulttext) 
		{
			if (Name.value == 'Your Name') 
			{
			Name.value = "";
			}
		}
function clickRecallName(Name, defaulttext) 
		{
			if (Name.value == "") 
			{
			Name.value = 'Your Name';
			}
		}
		
function clickClearEmail(Email, defaulttext) 
		{
			if (Email.value == 'Your Email Address') 
			{
			Email.value = "";
			}
		}
function clickRecallEmail(Email, defaulttext) 
		{
			if (Email.value == "") 
			{
			Email.value = 'Your Email Address';
			}
		}
