function PopUp(img){
	foto1= new Image();
	foto1.src=(img);
	Control(img);
}

function Control(img){
	if((foto1.width!=0)&&(foto1.height!=0)){
	verFoto(img);
}
else{
funcion="Control('"+img+"')";
  intervalo=setTimeout(funcion,20);
	}
}
function verFoto(img){
	ancho=foto1.width+16;
	alto=foto1.height+16;
	derecha=(screen.width-ancho)/2;
	arriba=(screen.height-alto)/2;
	cadena="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width="+ancho+",height="+alto+",left="+derecha+",top="+arriba+"";
	nombre= "ADI - Galer&iacute;a de arte";
	ventana=window.open("","",cadena);
	ventana.document.writeln ('<html><head>')
	ventana.document.writeln('<title>'+nombre+'</title></head>')
	ventana.document.writeln('<body marginwidth="6" marginheight="6" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" style="overflow:hidden; background-color:#9D9E96">')
	ventana.document.writeln('<a title="Cerrar ventana" href="javascript:window.close()"><img src="'+ img +'" style="border:#fff solid 2px" /></a>')
	ventana.document.writeln ('</body></html>')
	ventana.document.close()
}