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:RecShopping.Ventana();">'+
		'<img src="'+this.Imagen+'" border="0"></a>'); 
}

var CodVid;
 if (CodVid == '') CodVid = 0;

function Shopping(Codigo)
{
this.OK=1;
this.win=null;
this.Ancho=750;
this.Altura=470;
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='Buscapress';
this.Imagen='http://www.eol.es/gestion/publicidad/latiendaplus/latiendaplus.gif';
this.URL='http://tienda.eol.es/motor/index.asp?Id='+Codigo+'&CodVid='+CodVid;
this.Ventana=Ventana;
this.PintaImagen=PintaImagen;

	if(Codigo>0)
		this.PintaImagen();

}
RecShopping=new Shopping(Codigo);
