function showImage(obj){
	zzz=window.open("","PreView","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,copyhistory=0,height=300,width=400");
	zzz.document.open();
	zzz.document.write('<html><meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />');
	zzz.document.write("<head><title>Просмотр изображения</title></head>");
	zzz.document.write("<script>window.onload=function(){img=document.getElementById('bigimage');h=img.height;w=img.width; if(h>screen.height-50){h=screen.width-100;} if(h>screen.height-150){h=screen.height-200;} window.resizeTo(w+27,h+100);}</script>");
	zzz.document.write("<link href=/index.css rel=stylesheet type=text/css />");
	zzz.document.write("<body><div class=bigimg><img id=bigimage onClick=window.close() src="+obj.src.replace("/tn_","/")+"></div>");
	zzz.document.write("<div class=imgdesc>"+obj.title+"</div>");
	zzz.document.write("</body></html>");
	zzz.document.close();
}