  function foto_full(foto,fonte,descricao){
	if((foto.indexOf(".gif")>=0) || (foto.indexOf(".jpg")>=0)){
		if(typeof fonte == 'undefined')
			fonte = '';
		else
			fonte = "<tr><td class='texto' bgcolor=#d7d7d7 align=right>"+ fonte +"</td></tr>";
		if(typeof descricao == 'undefined')
			descricao = '';
		else
			descricao = "<tr><td class='texto' bgcolor=#d7d7d7>"+ descricao +"</td></tr>";
		novajanela = window.open('about:blank','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=1,height=1')
		novajanela.document.writeln(""+
		   							"<HTML> " +
		   							"<HEAD> " +
		   							"	<TITLE>Foto ilustrativa</TITLE> "+
									"	<link rel='stylesheet' href='/styles/centraljornalagora.css'  type='text/css'>" +
									"<script>" +
									"   function dimensao()" +
									"	{" +
									"		if((screen.width >= document.getElementById('foto').width+29) && (screen.height >= document.getElementById('foto').height+45)){"+
									"			window.resizeTo(document.getElementById('foto').width+29, document.getElementById('foto').height+45);}"+
									"		else "+
									"			window.resizeTo(screen.width, screen.height-32);document.body.scroll = 'yes';"+ 
									"	window.moveTo(0,0);"+
									"	} "+
									"</script>" +
									"</HEAD> " +
									"<BODY onload=\"dimensao();\" bottommargin=0 leftmargin=0 marginheight=0 marginwidth=0 rightmargin=0 topmargin=0>"+
									"<table cellpadding=0 cellspacing=0 border=0 width=10px>"+ fonte +
									"<tr><td><img id=foto src='"+foto+"' border=0></td></tr>"+ descricao +
									"</table>"+
									"</BODY>" +
		  							"</HTML>")
		novajanela.document.close();
	}		
}


function abre_janela(pagina,largura,altura,scrolls)
{
	if(!scrolls)
		scrolls = 'no';
	window.open(pagina,'','toolbar=no,location=no,top=200,left=200,directories=no,status=no,menubar=no,scrollbars='+scrolls+',Resizable=no,copyhistory=no,width=' + largura + ',height=' + altura)
}


