
<!--

function validate_form ( )
{
    valid = true;

    if ( document.mlscontact.name.value == "" )
    {
        alert ( "Please fill in the 'Name' box." );
        valid = false;
    }
    
     if ( document.mlscontact.email.value == "" )
        {
            alert ( "Please fill in the 'Email' box." );
            valid = false;
    }
    
    if ( document.mlscontact.mlsnumber.value == "" )
            {
                alert ( "Please fill in the 'MLS Listing Number' box." );
                valid = false;
    }
    
    if ( document.mlscontact.comments.value == "" )
                {
                    alert ( "Please fill in the 'Comments' box." );
                    valid = false;
    }

    return valid;
}

//-->


