function abrirPopUp(pPagina) {
  var remote = null
  remote = window.open(pPagina,'vRemote','width=660, height=435,toolbar=no,location=no,top=100,left=270,directories=no,status=no,menubar=no,scrollbars=true,resizable=no,fullscreen=no')
  if (remote != null) {
    if (remote.opener == null) {
      remote.opener = self
    }

  }
} 