<!--
	function abrefoto(arquivo,nomejanela,largura,altura,nivel){
		path = '';
		for (i=1;i<=nivel;i++){
			path = path + '';
		}
		 w = (screen.width/2)-(largura/2);
 		 v = (screen.height/2)-(altura/2);
  
		eric = window.open(path + arquivo,nomejanela,"top=10,left=10,toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+largura+",height="+altura+",left="+0+",top="+0);
		eric.resizeTo(largura,altura);
		eric.focus();
}
//-->