function validate_form_contact ()
{
	valid = true;  
		if(document.contact.name.value =="")
			{
				alert ( "Please fill in the 'Name' field" );
                valid = false;			  
			}
		else if ( document.contact.address.value == "" )
			{
            	alert ( "Please fill in the 'Address' field" );
	            valid = false;
    	    }
		else if ( document.contact.postcode.value == "" )
			{
            	alert ( "Please fill in the 'Postcode' field" );
	            valid = false;
    	    }
		else if ( document.contact.email.value == "" )
			{
            	alert ( "Please fill in the 'Email' field" );
	            valid = false;
    	    }
        return valid;
}