// JavaScript Document

function _abrePopUp(largura,altura){
	document.getElementById("popup_interno").style.visibility = 'visible';
	document.getElementById("popup_interno").style.width = largura;
	document.getElementById("popup_interno").style.height = altura;
}

function _fechaPopUp(){
	document.getElementById("popup_interno").style.visibility = 'hidden';
}


function _janela(url,larg,alt){
	  window.open(url,'SACRA2006','location=no,menubar=no,toolbar=no,status=no,height='+alt+',width='+larg+',resize=no,scrollbars=yes');
}

function _janela2(url,larg,alt){
	  window.open(url,'SACRA2006','location=no,menubar=no,toolbar=no,status=no,height='+alt+',width='+larg+',resize=no,scrollbars=no');
}

function CarregaUrl (url) {
	location.href = url;
}

function EscondeConteudo(d) {
	if(d.length < 1) { return; }
	document.getElementById(d).style.display = "none";
}

function MostraConteudo(d) {
	if(d.length < 1) { return; }
	document.getElementById(d).style.display = "block";
}
			
function ReverteExibicaoConteudo(d) {
	if(d.length < 1) { return; }
	if(document.getElementById(d).style.display == "none") {
		document.getElementById(d).style.display = "block";
	} else {
		document.getElementById(d).style.display = "none";
	}
}