function fv_notempty(val) {
        if (val == null || val == '') return false;
        return val.Trim()!=''
}
