if (navigator.appVersion.search("MSIE") == -1)
	var IE = false;
else
	var IE = true;

	
function justNumber(e) {
    tecla = IE? e.keyCode : e.which;
	
    if (tecla == 13){
		submeterOnPressEnter(document.forms[0], e);
    }
    if ((tecla == 0) || (tecla == 8)) {
        return true;
    }
    if ((tecla < 48)||(tecla > 57)) {
        if (IE){
            e.keyCode = 0;
            return false;
        }else{	//caso o browser seja firefox
            e.preventDefault();
            return false;
        }
    }
}

function atualizarIngresso(id_produto, quantidade){
	var ajax=openAjax();
	ajax.open('GET','carrinho_de_compras.php?acao=atualizar&id='+id_produto+'&quantidade='+quantidade, true);

 	ajax.send(null);			
}
