// Função Popup: <a href="arquivo.ext" onclick="popup(this.href,'360','535','1'); return false;"></a>
function popup(url,w,h,s) {
	var oW=window.open(url,'popup','width='+w+',height='+h+',directories=0,location=0,menubar=0,resizable=0,scrollbars='+s+',status=0,toolbar=0,marginleft=0,margintop=0,left='+(((screen.availWidth-w)/2)+-10)+',top='+(((screen.height-h)/2)+-10));
}

//Função para impressão
function imprimir(){
	popimpressao = window.open('', '_blank', 'width=751,height=450,left=0,top=0,scrollbars=yes,resizable=no,menubar=no,toolbar=no');

	with (popimpressao.document) {
		write('<html><head><title></title></head>');
		write('<link rel="stylesheet" href="../../css/default.css" type="text/css">');
		write('<link rel="stylesheet" href="../../css/print.css" type="text/css">');
		write('<body>');
		write(document.getElementById("impressao").innerHTML);
		write('</body></html>');
		close();
		}
        popimpressao.print();
}

function abre(id){
	if (document.getElementById("div"+id).style.display == "none"){
		document.getElementById("li"+id).className = "lista_tab_on";
		document.getElementById("div"+id).style.display = "block";
	}
	else{
		document.getElementById("li"+id).className = "lista_tab";
		document.getElementById("div"+id).style.display = "none";
	}
}


function abreaba(id, id2){
		document.getElementById(id).style.display = "block";
		document.getElementById(id2).style.display = "none";
}
