function fv_email(val) {

        if (val=='') return true
        var re = /^(\w|-|\.)+\@([a-zA-Z0-9]|-)+\.(\w|\.)+/;
        return re.test(val)

}