//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 == "E-mail Address")
		{
		alert ( "Please fill in the 'E-mail Address' field." );
		valid = false;
		return valid;
		}
	
	if (document.cform.phone.value == "Phone Number")
		{
		alert ( "Please fill in the 'Phone Number' field." );
		valid = false;
		return valid;
		}
		
    if (document.cform.message.value == "Type your message here")
		{
		alert ( "Please fill in the 'Message' field." );
		valid = false;
		return valid;
		}
		
    return valid;
	}
