function ShowInfo(){
	BigImage=new Image();
	BigImage.src=imgname;
	WWidth=BigImage.width+25;
	WHeight=BigImage.height+50;
	var DetailWindow=open("","MoreInfo","width="+WWidth+", height="+WHeight+", status=no, toolbar=no, menubar=no, left=0 top=0");
	DetailWindow.document.open();
	DetailWindow.document.write("<html><head><title>Подробности</title>");
	DetailWindow.document.write("<link rel=StyleSheet href='scripts/ledlabs.css' type='text/css'></head><body>");
	DetailWindow.document.write("<img src='http://counter.rambler.ru/top100.cnt?776744' width=1 height=1 border=0>");
	DetailWindow.document.write("<img src='http://u6708.59.spylog.com/cnt?cid=670859&p=0' alt='SpyLOG' border='0' width=1 height=1>");
	DetailWindow.document.write("<br><center><img src=" + BigImage.src + " width=" +BigImage.width + " height=" + BigImage.height + " border=0></center>");
	DetailWindow.document.write("<p align=right><a href='Javascript:void(0);'  onClick='window.close()';>Закрыть</a>&nbsp;&nbsp;&nbsp;</p>");
	DetailWindow.document.write("</body></html>");
	DetailWindow.document.close();
}