function Ventana()
 {
 //alert(this.URL);
 win = window.open(this.URL,this.Titulo,this.settings);
 /*if(win.window.focus){win.window.focus();*/
 }

function PintaImagen()
 {
 if (navigator.appName == 'Microsoft Internet Explorer')
   {
  document.write('<img src="'+this.Imagen+'" width="0" height="0" border="0" alt="">');
   } 
 else 
   {
  document.write('<img src="'+this.Imagen+'" width="0" height="0" border="0" alt="">');
   }
 }

function EstadisticasEol(Codigo)
 {
 this.OK=1;
 this.win=null;
 this.Ancho=725;
 this.Altura=450;
 this.PosicionI = (screen.width) ? (screen.width-this.Ancho)/2 : 0;
 this.PosicionA = (screen.height) ? (screen.height-this.Altura)/2 : 0;
 this.Scroll='yes';
 this.settings ='height='+this.Altura+',width='+this.Ancho+',top='+this.PosicionA+',left='+this.PosicionI+',scrollbars='+this.Scroll+',status=yes,toolbar=yes,location=yes,resizable';
 this.Titulo='Estadisticas Eol';
 if (navigator.appName == 'Microsoft Internet Explorer')
   {
  this.Imagen='http://estadisticas.eol.es/AddHit.asp?Id='+Codigo+'&Tipo=Nul&Loca='+window.document.location+'&Titu='+window.document.nameProp+'&Modi='+window.document.lastModified;
   } 
 else 
   {
  this.Imagen='http://estadisticas.eol.es/AddHit.asp?Id='+Codigo+'&Tipo=Nul&Loca='+window.document.location+'&Titu='+window.document.nameProp;
   }
 //this.URL='';
 //this.URL='http://estadisticas.eol.es';
 //this.URL='http://estadisticas.eol.es/Visualizacion/indexv.asp?IdP='+Codigo;
 this.Ventana=Ventana;
 this.PintaImagen=PintaImagen;
 if (Codigo > 0) this.PintaImagen();
 }

RecEstadisticasEol=new EstadisticasEol(Codigo);
