// JavaScript Document

  function validate_contactform ( )
{
    valid = true;
	

    if ( document.contact_form.contact_name.value == "" )
    {
        alert ( "Please enter a contact name." );
		contact_form.contact_name.focus();
        valid = false;
	}
  
  else if ( document.contact_form.postcode.value == "" )
    {
        alert ( "Please enter your postcode at least in the address details so we know what area to are contacting us from." );
		contact_form.postcode.focus();
        valid = false;
	}
	
	
	else if ( document.contact_form.message.value == "" )
    {
        alert ( "Please type a question or enquiry in the field provided." );
		contact_form.message.focus();
        valid = false;
	}
	
	
	
				
    return valid;
}
