// JavaScript Document

// Form validation

function GO_checkForm()

	{
	if( document.contactForm.Name.value == "" )
	{
	alert( "Please enter your name" );
	return false;
	}
	
	if( document.contactForm.Phone.value == "" )
	{
	alert( "Please enter your contact phone number" );
	return false;
	}
	
	return true;
	}

// Form functions

function resetForm()
{
  document.contactForm.reset();
}
//-->