function ShowImageWindow(picname, width, height, title) {
	width += 30
	height += 30    
	var params='toolbar=no,height='+height+',width='+width+',location=no,scrollbars=no,status=no,menubar=no,resizable=yes';
	picwin=window.open("","_blank",params);
	picwin.document.open();
	picwin.document.write('<html><title>Донской табак</title>');
	picwin.document.write('<body>');
	picwin.document.write('<table><tr><td align="center" valign="middle"><img style="cursor:hand;cursor:pointer" src="'+picname+'" border="0"/ onclick="window.close();opener.focus()">');
	picwin.document.write('</td></tr></table></body></html>');
	picwin.document.close();
}
