// Mangeles - Marzo 2004
// Si el enlace es a Espublico redirigimos a otra página
function abrirRelacionado(URL,target)
{   
   var Texto=URL;
   if (Texto.substring(0,24)=='http://www.espublico.com')
   {
     URL = '/lib/redirEspublico.asp?URL='+escape(Texto.substring(24,Texto.length));
   } 
 
   if (target == 1){
      window.open(URL, "_blank");
   }else 
      window.open(URL, "_self");
   }