﻿/*
* Somente números pode ser informados 
*/
function SomenteNumero(e)
{
    var tecla=(window.event)?event.keyCode:e.which;
    if((tecla > 47 && tecla < 58)) 
        return true;
    else
    {
    if (tecla != 8 || tecla != 23) 
        return false;
    else 
        return true;
    }
}
