function validate_form ( )
{
	valid = true;

        if ( document.contact_form.name.value == "" )
        {
                alert ( "Please fill in the 'Name' box." );
                valid = false;
        }
		
        if ( document.contact_form.email.value == "" )
        {
                alert ( "Please fill in the 'Email' box." );
                valid = false;
        }
      


        return valid;
}

