
function submitInscricao(file, titulo) {
	
	var flashDiv = document.getElementById("flashDiv");
	flashDiv.style.visibility = "HIDDEN";
	flashDiv.style.display = "NONE";
	
	showFundo();
	document.getElementById("tituloJanelaAnimacao").innerHTML=titulo;
	
	
	var divInsc = document.getElementById("divInscricao");
	divInsc.style.visibility = "VISIBLE";
	divInsc.style.display = "";
	divInsc.style.MozOpacity=1; // transparencia FF
	divInsc.style.opacity=1; // transparencia  FF, Opera, Safari, Netscape
	divInsc.style.filter="Alpha(Opacity=100)";
	
	var divInscInterna = document.getElementById("divInscricaoInterna");
	divInscInterna.style.visibility = "VISIBLE";
	divInscInterna.style.display = "";
	divInscInterna.style.MozOpacity=1; // transparencia FF
	divInscInterna.style.opacity=100; // transparencia  FF, Opera, Safari, Netscape
	divInscInterna.style.filter="Alpha(Opacity=100)";
	
	document.centroForm.file.value= file;
	document.centroForm.target = 'ifInscricao';
	document.centroForm.action = 'showAnimacao.php?';
	document.centroForm.submit();
}

function closeDivInscricao() {
	
	hideFundo();
	
	var divInsc = document.getElementById("divInscricao");
	divInsc.style.visibility = "HIDDEN";
	divInsc.style.display = "NONE";
	
	var divInscInterna = document.getElementById("divInscricaoInterna");
	divInscInterna.style.visibility = "HIDDEN";
	divInscInterna.style.display = "NONE";
	
	var flashDiv = document.getElementById("flashDiv");
	flashDiv.style.visibility = "VISIBLE";
	flashDiv.style.display = "";
	
}

function executeHelper() {
	closeDivInscricao();
}
