function MostraEscondeDiv(div) {
	situacao = document.getElementById(div).className;
	objDiv = document.getElementById(div);

	if (situacao == "div_mostrando") {
		objDiv.className = "div_escondido";
	} else {
		objDiv.className = "div_mostrando";
	}

}

function MostraEscondeDiv2(div, div2, valor) {
	objDiv = document.getElementById(div);
	objDiv2 = document.getElementById(div2);

	if (valor == "1") {
		objDiv.className = "div_escondido";
		objDiv2.className = "div_mostrando";
	} else if (valor == "2") {
		objDiv.className = "div_mostrando";
		objDiv2.className = "div_escondido";
	}
}

function abreImpressao(URL) {
	var width = 700;
	var height = 500;
	var left = 0;
	var top = 0;
	window.open(URL, null, 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes, status=no, toolbar=no, location=no, directories=no, menubar=yes, resizable=yes, fullscreen=no');
}


function DoPrinting() {
	if (!window.print){
		alert("Use o Netscape ou Internet Explorer \n nas versões 4.0 ou superior!")
		return
	}
	window.print()
}

function onLoad()
{
    document.getElementById("site").style.display = "none";
    document.getElementById("alert").style.display  = "inline";
}

function hideAlert()
{
    document.getElementById("site").style.display = "inline";
    document.getElementById("alert").style.display  = "none";
}