﻿// JScript File

function vNumeric(obj)
{
    var valor = obj.value;
    
    if (isNaN(valor) || valor == "")
        obj.value = "0";
}
