function validarSiNumero(valor)
{
	if (!/^([0-9])*$/.test(valor))
		{
			return false
		}
	else
		{
			return true	
		}
}
