function openfoto(imageName,imageWidth,imageHeight) {

	//imageName= "img/"+imageName;
	LeftPosition = (screen.width) ? (screen.width-imageWidth)/2 : 10;
	TopPosition = (screen.height) ? (screen.height-imageHeight)/2 : 10;
	opt = "width=" + imageWidth + ",height=" + imageHeight + ",left=" + LeftPosition + ",top=" + TopPosition + ",maxbutton=0,scrollbar=0";
	alt = "Pulse sobre la foto para cerrar esta ventana";

 	newWindow = window.open("","newWindow",opt);
	newWindow.document.open();
	newWindow.document.write('<html><head><title>'+alt+'</title></head><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<a href="javascript:window.close()"><img src='+imageName +' alt="'+alt+'" border="0"></a>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}

/*Orden que dar al botón para abrir la foto:*/
/*javascript:openfoto('nombre_foto.jpg',500,560);*/

var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));

try {
	var pageTracker = _gat._getTracker("UA-12798477-1");
	pageTracker._trackPageview();
} 
catch(err) {}
