// JavaScript Document
//Exibir e ocultar DIV
function exibe(id) {
	if(document.getElementById(id).style.display=="none") {
		document.getElementById(id).style.display = "block";
	}
	else {
		document.getElementById(id).style.display = "none";
	}
}

function oculta(id) {
	if(document.getElementById(id).style.display=="block") {
		document.getElementById(id).style.display = "none";
	}
	else {
		document.getElementById(id).style.display = "block";
	}
}

// Exibe e Oculta DIV Versão 2
function exibeNovo(id) {
	document.getElementById(id).style.display = "block";
}

function ocultaNovo(id) {
	document.getElementById(id).style.display = "none";
}
// JavaScript Document

function abre_janela(width, height, nome, scrollbars) {
var top; var left;
top = ( (screen.height/2) - (height/2) )
left = ( (screen.width/2) - (width/2) )
window.open('',nome,'width='+width+',height='+height+',scrollbars='+scrollbars+',toolbar=no,location=no,status=no,menubar=no,resizable=no,left='+left+',top='+top);
}