// JavaScript euromarble
var ventana;
function popUp(fichero,ancho,alto){
	if (typeof(ventana)!="undefined")
		if (!ventana.closed)
			ventana.close();
	ventana=window.open('','ventana','width='+(parseInt(ancho)+10)+',height='+(parseInt(alto)+10)+',status=yes')
	var texto = "<html><head><title>Zoom+</title>";
	texto = texto +"</head><body bgcolor='#ffffff' text='#666666' leftmargin='5' topmargin='5' marginwidth='5' marginheight='5' onClick='javascript:window.close();'>";
	texto = texto + "<img src='"+fichero+"' width='"+ancho+"' height='"+alto+"'></body></html>"	
	//Abrimos la ventana
	ventana.document.open("text/html","replace");
	ventana.document.write(texto);
	ventana.focus();
}
