		<!-- Hide...
		function popupWin(sImgSrc, iAncho, iAlto) {
			var iAnchowin;
			var iAltowin;
			var LeftPosition;
			var TopPosition;
			iAnchowin = iAncho + 50;
			iAltowin = iAlto + 120;
			text =  "<html>\n<head>\n<title>Foto - Ampliaci&oacute;n</title>\n</head>\n<body>\n";
			text += "<p style='text-align: center;'>\n";
			text += "<a href='#' onClick='javascript:window.close();'>Cerrar ventana</a>";
			text += "</p>\n";
			text += "<div style='text-align: center;'>\n";
			text += "<img src='" + sImgSrc + "' height='" + iAlto + "' width='" + iAncho + "'></img>";
			text += "<p style='text-align: center;'>\n";
			text += "<a href='#' onClick='javascript:window.close();'>Cerrar ventana</a>";
			text += "</p>\n";
			text += "</div>\n</body>\n</html>\n";
			LeftPosition = (screen.width) ? (screen.width-iAnchowin )/2 : 0;
			TopPosition = (screen.height) ? (screen.height-iAltowin )/2 : 0;
			sParam = "width=" + iAnchowin + ", height=" + iAltowin + ",top=" + TopPosition + ",left= " + LeftPosition;
			sParam += ", scrollbars=yes, resizable=yes, status=no, toolbar=no";
			sParam += ", location=no, directories=no, menubar=no";
			newWindow = window.open('','',sParam);
			//newWindow.moveTo(0,0);
			newWindow.document.write(text);
		}
		// -->