
function check_consumo(fieldObj)
{
    alert("Sistema attualmente non disponibile");
    return false;
    var check = fieldObj.value.match(/^[0-9]+$/);
    
    if(check == null) {
    
        alert('Il campo Km/anno č obbligatorio e puņ contenere solo numeri');
        
        fieldObj.focus();
        
        return false;

    }
    
    return true;
}
