//===========================================================
/* Valida a localização do conteudo e obriga a passar pelo index.html */
//===========================================================
if (parent.location.href == self.location.href)
window.location.href = "../homepage/index.html?theURL="+window.location.pathname

/* Ajusta o tamanho da iframe */
function autofitIframe(id){
	parent.document.getElementById(id).style.height=this.document.body.offsetHeight+"px";
}
//===========================================================




//===========================================================
// Detalhes das Embaixadas
//===========================================================
var whichDetailToClose = "";

function detailOpenAndClose(whichDetailToOpen){
var delta = document.getElementById(whichDetailToOpen);
if(delta.style.display == 'block'){
	delta.style.display = 'none';
}else{
	delta.style.display = 'block';
}
if(whichDetailToClose != "" && whichDetailToOpen != whichDetailToClose){
	var alpha = document.getElementById(whichDetailToClose);
	alpha.style.display = 'none';
}
whichDetailToClose = whichDetailToOpen;
}
//===========================================================