function add( nom ) {
if (document.getElementById( nom ).value < 2000)
document.getElementById( nom ).value ++;
}
function substract( nom ) {
if (document.getElementById( nom ).value >1 && document.getElementById( nom ).value<2000)
document.getElementById( nom ).value --;
}

function isNumberKey(evt)
{
    var charCode = (evt.which) ? evt.which : event.keyCode
    if (charCode > 31 && (charCode < 48 || charCode > 57))
return false;

    return true;
}


