function abreEditar(pPage, pWidth, pHeight) {
   
   //pPage = '<%= cSite_CliDir %>' + pPage + '?nome_curto=<%= nome_curto %>'
   pPage = 'editar.asp?page=' + pPage + '&nome_curto=<%= nome_curto %>'
   window.open(pPage,'','width='+pWidth+',height='+pHeight+',top=50, left=50, screenX=0,screenY=0,scrollbars=yes,directories=no,location=no,menubar=no,resizable=no,status=no,toolbar=no');
}

function abre(pPage, pWidth, pHeight) {   
   window.open(pPage,'','width='+pWidth+',height='+pHeight+',top=50, left=50, screenX=0,screenY=0,scrollbars=yes,directories=no,location=no,menubar=no,resizable=no,status=no,toolbar=no');
}


// Abre mapas
function openMap() {
  window.open('http://mapas.terra.com.br/','');
}

// Seleciona opção de menu
function openMenuOpt(pShortName, pId) {
  var sPage = 'pg_index.asp'
  
  if (pId == 99) {sPage = 'contact.asp'}
  document.location = sPage + '?short_name='+pShortName+'&section_id='+pId;
  //alert (sPage + '?short_name='+pShortName+'&section_id='+pId);
}

// Abre Editar Principal com Opções
function openOptEdit(pShortName) {
   var sPage = 'edit.asp?short_name='+pShortName;
   abre(sPage, 521,440);
}

// Abre Editar Específico
function openEdit(pPage, pShortName) {
   pPage = 'edit_'+ pPage +'.asp?short_name='+pShortName;
   document.location = pPage;
   //abre(pPage, 520,440);
   //self.close();
}


