// JavaScript Document
function validate_form ( )
{
    valid = true;

    if ( document.contact_form.Fname.value == "" )
    {
        alert ( "Please fill in the ' your First Name'." );
        valid = false;
    }
    if ( document.contact_form.Sname.value == "" )
    {
        alert ( "Please fill in the 'Your Second Name'." );
        valid = false;
    }
    if ( document.contact_form.tel.value == "" )
    {
        alert ( "Please fill in the 'Telephone' box." );
        valid = false;
    }
	if ( document.contact_form.Fax2.value == "" )
    {
        alert ( "Please fill in the 'Fax' box." );
        valid = false;
    }
    if ( document.contact_form.Address.value == "" )
    {
        alert ( "Please fill in the 'Address' box." );
        valid = false;
    }    
    if ( document.contact_form.County.value == "" )
    {
        alert ( "Please fill in the 'County' box." );
        valid = false;
    }	
    if ( document.contact_form.Pcode.value == "" )
    {
        alert ( "Please fill in the 'Postcode' box." );
        valid = false;
    }
    if ( document.contact_form.Query.value == "" )
    {
        alert ( "You have not inserted your Query' box." );
        valid = false;
    }	
	return valid;
}


