function zoom(img)
{
	var m = "/", lm = img.src.lastIndexOf(m);
	if( lm>0)
	{
		var path=img.src.substring(0, lm),
			imgfile = img.src.substring(lm),
			alt = img.alt,
			imgurl=path+"/zoom"+imgfile;
		var w=img.width*4, h=img.height*4+30;
		var zw=window.open("","zw",
			"resizable=yes,toolbars=no,scrollbars=no,width="+w+",height="+h);
		zw.moveTo(10,10);
		zw.document.open();
		//zw.document.write("<html><title>Image zoom...</title><link rel=\"stylesheet\" href=\"styles/styles.css\" type=\"text/css\"><body bgcolor=#ffffff><center>\n");
		zw.document.write("<img border=0 src=\"" + imgurl+ "\" alt=\""+alt+"\" onerror=\"this.src='"+img.src+"'\" onload=\"window.resizeTo(this.width+40,this.height+100);\">");
		//zw.document.write("\n<br><a class=\"simple_text\">" + alt +  "</a>");
		//zw.document.write("\n<br><span class=\"small_text\">&copy; Αρχείο Μουσείου</span>");
		//zw.document.write("\n<br><br><a class=\"small_text\" href=\"javascript:window.close()\">ΚΛΕΙΣΙΜΟ ΠΑΡΑΘΥΡΟΥ</a>");
		//zw.document.write("</center></body></html>");
		zw.document.close();
		zw.focus();
	}
}