function Numero(e)
{
navegador = /msie/i.test(navigator.userAgent);
if (navegador)
var  tecla = event.keyCode;
else
var tecla = e.which;

if(tecla > 47 && tecla < 58) // numeros de 0 a 9
return true;
else
{
if (tecla != 8) // backspace
return false;
else
return true;
}
}

function verifica_carrinho()
{
	if(document.getElementById('qte').value=="0")
	{
		alert("Acrescente pelo menos 1 valor a quantidade");
		return false;
	}
}
