function popup(nombre,imagen,x,y,ancho,alto,coordenadas){
	document.write('<div id="publicidadV" style="position:absolute;top:'+
	y+'px;left:'+x+'px;height:0px;width:0px,"><img src="'+imagen+'" style="width:'+ancho+'px;height:'+alto+'px;" border="0" usemap="#Mappublicidad" />'+
	'</div><map name="Mappublicidad" id="Mappublicidad"><area shape="rect" coords="'+coordenadas+
	'" href="javascript:'+nombre+'.ocultar()" alt="CERRAR" /></map>');	
	this.mostrar=function mostrar(){
		document.getElementById('publicidadV').style.width=''+this.width+'px';
		document.getElementById('publicidadV').style.height=''+this.height+'px';
		document.getElementById('publicidadV').style.visibility='visible';
		document.getElementById('publicidadV').style.zIndex='1';
	};
	this.ocultar=function ocultar(){
		document.getElementById('publicidadV').style.visibility='hidden';
		document.getElementById('publicidadV').style.width='0px';
		document.getElementById('publicidadV').style.height='0px';
		document.getElementById('publicidadV').style.zIndex='-1';
	};
	this.width=ancho;
	this.height=alto;
	this.ocultar();
}

