//CONTACT FORM VALIDATION
function validation ()
	{
	valid = true;

    if (document.cform.name.value == "Name")
		{
		alert ( "Please fill in the 'Name' field." );
		valid = false;
		return valid;
		}
		
	if (document.cform.email.value == "Email")
		{
		alert ( "Please fill in the 'Email' field." );
		valid = false;
		return valid;
		}
		
    if (document.cform.phone.value == "Phone")
		{
		alert ( "Please fill in the 'Phone' field." );
		valid = false;
		return valid;
		}
		
    if (document.cform.comments.value == "Type your message here")
		{
		alert ( "Please fill in the 'Comments' field." );
		valid = false;
		return valid;
		}
		
	window.alert('Your submission has been sent, thank you.');
    return valid;
	}

