function zoomImage(src, t, w, h){
	win = window.open("/foto?i="+escape(src)+"&t="+escape(t), "foto", "width="+w+", height="+h);
	win.focus();
}
/*
 function zoomImage(src, t, w, h) {
   var stili = "top=10, left=10, width="+w+", height="+h+", status=no, menubar=no, toolbar=no scrollbar=no";
   var testo = window.open("", "", stili);
      testo.document.write("<html>\n");
      testo.document.write("<head>\n");
      testo.document.write("<title>"+t+"</title>\n");
			testo.document.write("<style type='text/css'> body {margin-left: 0px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;}</style>\n");
			testo.document.write(" </head>\n");
      testo.document.write("<body>\n");
      testo.document.write("<img src=\""+src+"\">\n");
      testo.document.write("</body>\n");
      testo.document.write("</html>");
		return true;
 }
 */
