 function AparecerDiv(div){ // função aparecer  
     document.getElementById(div).style.display = "block";  
    // usamos o style.display para manupular o css da div e mostrar ela  
}  
 
function OcultarDiv(div){  // função ocultar  
     document.getElementById(div).style.display = "none";  
     // usamos o style.display para manupular o css da div e ocultar ela  
}
function OcultarEvoltar(div){ // função ocultar e voltar
	document.getElementById(div).style.display = "none";
	window.location = "tabela_de_precos.php";
}

function Esperar() { //DOM
if (document.getElementById){
document.getElementById('carregando').style.visibility='hidden';
}else{
if (document.layers){ //NS4
document.carregando.visibility = 'hidden';
}
else { //IE4
document.all.carregando.style.visibility = 'hidden';
}
}
}

function Erro_1() {
alert ("Voce deve escolher um produto primeiro");
window.location= "index.php";
}

