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