<!-- 
function AbreMenu(pag) {
document.location = pag;
}
//***********************************************************************
function ExpandeDiv(id_cadastro)
{
var qtd_div = document.getElementsByTagName('div').length;
var div_sel = document.getElementById(id_cadastro);
var todas_divs;

for (var i = 1; i <= qtd_div; i++)
{
todas_divs = document.getElementById("div"+i);

if (todas_divs.id != id_cadastro)
todas_divs.style.display = 'none';
else
div_sel.style.display = 'block';
}
}
//***********************************************************************
function LocURL(url) {
if (url != "") 
{ document.location = (url); }
}
//***********************************************************************
function AbreJanelaPop(aPag,oNome,w,h) { //v2.0
var top; var left; var width; var height;
width  = w;
height = h;
top = (screen.height/2)-(height/1.6);
left = (screen.width/2)-(width/2);
AbreJanela(aPag,oNome,'status=yes,scrollbars=yes,width='+width+',height='+height+',left='+left+',top='+top);
}
//***********************************************************************

function AbreAddRecadoMural(Acao) { //v2.0
var top; var left; var width; var height;
width  = 900;
height = 580;
top = (screen.height/2)-(height/1.6);
left = (screen.width/2)-(width/2);
AbreJanela('Mural_ADD.asp?Acao='+Acao,'Msg_'+Acao,'status=no,width='+width+',height='+height+',left='+left+',top='+top);
}
//-------------------------------------------------------------------------------------
function AbreVideo(ID) { //v2.0
var top; var left; var width; var height;
width  = 600;
height = 560;
top = (screen.height/2)-(height/1.6);
left = (screen.width/2)-(width/2);
AbreJanela('videos.asp?ID='+ID,'status=no,width='+width+',height='+height+',left='+left+',top='+top);
}
//-------------------------------------------------------------------------------------

function IrParaEvento(idEvento) {
if (idEvento != "") 
{ document.location = ('Eventos_Galeria.asp?id='+idEvento); }
}
//***********************************************************************
function IrParanoticia(CodigoNoticia) {
if (CodigoNoticia != "") 
{ document.location = ('Noticia.asp?ID='+CodigoNoticia); }
}
//***********************************************************************
function AbreJanela(theURL,winName,features) 
{ 
window.open(theURL,winName,features);
}
//***********************************************************************
function AbreNovaJanelaX(url,Nome) {
var width; var height;
height = (screen.height);
width  = (screen.width);
if (url != "") 
{ window.open(url,Nome,'status=yes,scrollbars=yes,resizable=yes,width='+width+',height='+height+',left=0,top=0'); }
//,status=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes
}
//***********************************************************************
function AbreNoticiaPopup(theID) { //v2.0
var top; var left; var width; var height;
width = 680;
height = 460;
top = (screen.height/2)-(height/1.6);
left = (screen.width/2)-(width/2);
AbreJanela('Noticia_Popup.asp?Noticia='+theID,'Noticia_'+theID,'status=yes,scrollbars=yes,width='+width+',height='+height+',left='+left+',top='+top);
}

//***********************************************************************


//-->
