

function exibir_pagina(origem,leg,id)
{
		
	var retorno_php;
	var agora 	= new Date();
	var dia		= agora.getDate();
	var mes		= agora.getMonth();
	var ano		= agora.getYear(); 
	var hora 	= agora.getHours();
	var minuto 	= agora.getMinutes();
	var segundo = agora.getSeconds();
	var soma;	
	soma = dia+mes+ano+hora+minuto+segundo;
	///////////////////////////////
	try{
		xmlhttp = new XMLHttpRequest();
	}catch(ee){
		try{
			xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
		}catch(e){
			try{
				xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
			}catch(E){
				xmlhttp = false;
			}
		}
	}

	
	var pagina = "informacao.php?leg="+leg+"&id="+id;
	
	
	if(origem=='inicio')
	{
		parent.mainFrame.location.href = pagina;	
		return true;
	}//fim if inicio
	else(origem=='default')
	{
		
		$("#img_informacao_legenda").fadeOut("slow", function() {
			 document.getElementById("img_informacao_legenda").src = "images/legenda_"+leg+".jpg";	 
		});
		
		$("#div_informacao_central").fadeOut("slow", function() {
		
			 
			 document.getElementById("div_informacao_carregando").innerHTML 	= '<div align=center><br><br><br><img src=/frinape2008/site/images/carregando.gif width=24 height=24></div>';
			 
			 xmlhttp.open("GET", "informacao_links_menu.php?js=sim&soma="+soma+"&leg="+leg+"&id="+id,true);
			
			 xmlhttp.onreadystatechange=function() {
			 if (xmlhttp.readyState==4){
					//Lê o arquivo
					
					retorno_php=xmlhttp.responseText;
					document.getElementById("div_informacao_central").innerHTML 	= retorno_php;
					
					$("#img_informacao_legenda").fadeIn("slow");
					$("#div_informacao_central").fadeIn("slow");
	
					document.getElementById("div_informacao_carregando").innerHTML 	= '';
					
					pageTracker._trackPageview(pagina);
 
				}
			 }
			 xmlhttp.send(null);  

		});
		
	}//fim if default

}

function abrir_album(id)
{
	
	document.getElementById("quadro_exibir_galeria").innerHTML  = "<table border=0 width=700px height=100% cellspacing=0 cellpadding=0 align=center>					<tr valign=middle>						<td align=center valign=middle >                                                <iframe id='iframe_exibir_galeria' name='iframe_galeria' src='/frinape2008/album_new/abrir_galeria.php?galeria="+id+"' width=705px height=444px frameborder=0 marginwidth=1 marginheight=1 scrolling=no allowTransparency=true></iframe>                                                </td>					</tr>				</table>";

	document.getElementById("quadro_exibir_galeria").style.width  = "100%";
	document.getElementById("quadro_exibir_galeria").style.height = "100%";
			


}