function validate_form ( )
{
    valid = true;

    if ( document.signbox.name.value == "" )
    {
        alert ( "Please fill in the 'Name' box." );
        valid = false;
    }

    return valid;
}