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+12;
	alto=foto1.height+12;
	derecha=(screen.width-ancho)/2;
	arriba=(screen.height-alto)/2;
	cadena="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+ancho+",height="+alto+",left="+derecha+",top="+arriba+"";
	nombre= "dromedigital.com";
	ventana=window.open("","",cadena);
	ventana.document.writeln ('<html><head>')
	ventana.document.writeln('<title>'+nombre+'</title></head>')
		
	ventana.document.writeln('<style type="text/css">body{margin:5px; background-color:#B6BAC5}</style>')
	
	ventana.document.writeln('<body>')
	ventana.document.writeln ('<a title="Cerrar ventana" href="javascript:window.close()"><img src="'+ img +'" style="border:#474F6D solid 1px" /></a>')
	ventana.document.writeln ('</body></html>')
	ventana.document.close()
}