function superPopup(){
  // Obtener el link mediante su ID
  var el_link = document.getElementById("popup");
  if (el_link == null)
	return false;
  // Agregar función pop up al evento onClick del link
  el_link.onclick = function(){
   // Obtener atributo HREF del link
   var href = this.href;
   // Abrir pop up usando atributo HREF
   window.open(href,"nueva ventana", "width=816,height=250");
   // Hay que retornar FALSE para anular el comportamiento original del link
   return false;
  }
}
