function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function abre_noticia(URL_n) {
  window.open(URL_n,'noticia','width=350,height=400,directories=no,location=no,resizable=no,menubar=no,scrollbars=yes,status=no');
  }
function abre_evento(URL_e) {
  window.open(URL_e,'evento','width=350,height=400,directories=no,location=no,resizable=no,menubar=no,scrollbars=yes,status=no');
  }
function verificaNome_e() {
  nome = window.name;
  if(nome != 'evento') {
  location.href = 'index.php';
  }
}
function verificaNome_n() {
  nome = window.name;
  if(nome != 'noticia') {
  location.href = 'index.php';
  }
}
function verificaNome_f() {
  nome = window.name;
  if(nome != 'foto') {
  location.href = 'index.php';
  }
}
function verificaFrame_1() {
  qtd = parent.length;
  if(qtd == 0) {
  location.href = '../index.php';
  }
}

