function IsNumeric(inputVal) {
     if (isNaN(parseFloat(inputVal))) {
        return false;
     }
     return true
}