function Ventana()
{
win = window.open(this.URL,this.Titulo,this.settings);
if(win.window.focus)win.window.focus();
}
function PintaImagen()
{
	document.write('<a href="javascript:RecVideoclubsonline.Ventana();">'+
		'<img src="'+this.Imagen+'" border="0"></a>'); 
}
function Videoclubsonline(Codigo)
{
this.OK=1;
this.win=null;
this.Ancho=800;
this.Altura=500;
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,resizable';
this.Titulo='Videoclubsonline';
this.Imagen='http://www.eol.es/gestion/publicidad/videoclubsonline/videoclubsonline.gif';
this.URL='http://www.videoclubsonline.com/motor/index.asp?Id='+Codigo;
//this.URL='http://miguel/videoclubsonline/motor/index.asp?Id='+Codigo;
this.Ventana=Ventana;
this.PintaImagen=PintaImagen;

	if(Codigo>0)
		this.PintaImagen();

}
RecVideoclubsonline=new Videoclubsonline(Codigo);

