function d() {}
function big(img,en)
{
	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+"/zooms"+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><head><title>Image zoom...</title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1253\"><link rel=\"stylesheet\" href=\"styles/general.css\" type=\"text/css\"></head><body bgcolor=#ffffff><center>\n");
		zw.document.write("<br><br><img border=0 src=\"" + imgurl+ "\" alt=\""+alt+"\" onerror=\"this.src='"+img.src+"'\" onload=\"window.resizeTo(this.width+80,this.height+150);\">");
		zw.document.write("\n<br><a class=\"text\">" + alt +  "</a>");
		if (en==null)
			zw.document.write("\n<br><a class=\"links_news\" href=\"javascript:window.close()\">Κλείσιμο Παραθύρου</a>");
		else
			zw.document.write("\n<br><a class=\"links_news\" href=\"javascript:window.close()\">Κλείσιμο Παραθύρου</a>");
		zw.document.write("</center></body></html>");
		zw.document.close();
		zw.focus();
	}
}
