function some(id){
	if(document.getElementById(id).style.display==""){
		document.getElementById(id).style.display="none";
		document.getElementById(id+'a').src="img/seta.jpg";
	}else{
		document.getElementById(id).style.display="";
		document.getElementById(id+'a').src="img/seta_baixo.jpg";
	}
}
/*function impressao(){
	newWindow = window.open("", "", "width=750");
	newWindow.document.write("<HTML>
							 <HEAD>
								 <title>Visualização de impressão</title>
								 <LINK href='includes/estilo.css' type='text/css' rel='stylesheet'>
							 </HEAD>
							 <BODY>
								 <SPAN CLASS='titulo2'>
									 <IMG src='img/topo2.jpg' border='0'><BR><BR><BR>"+document.getElementById('titular').innerHTML+"
								 </SPAN>
								 <BR><BR>
								 <table>
									 <tr>
										 <td>"+document.getElementById('descricao').innerHTML+"<td>
									 </tr>
									 <tr>
										 <td>"+document.getElementById('campo1').innerHTML+"<td>
									 </tr>
								 </table>
							 </BODY>
							 </HTML>
							");
	newWindow.document.close();
	//newWindow.window.print();
	//newWindow.window.close();
}*/
window.onload = function(){
	window.document.header.SetVariable("titulo", document.getElementById("lblTitulo").innerHTML);
	window.document.header.SetVariable("caminho", document.getElementById("varcaminho").innerHTML+" / <b>"+document.getElementById("lblTitulo").innerHTML)+'</b>';
}
