function openimage(imagetitle, image)
{
	w=800;
	h=400;
	win1 = open("", "_blank", "toolbar=0,status=0,location=0,menubar=0,directories=0,scrollbars=1,resizeable=1,width="+w+",height="+h);
	win1.document.open();
	win1.document.write("<html><head><title>"+imagetitle+"</title><meta http-equiv=Content-Type content=text/html; charset=windows-1251><link rel=stylesheet href=/css/content.css></head>");
	win1.document.write("<body topmargin=0 leftmargin=0 marginheight=0 marginwidth=0><div align=center><img src='"+image+"' border=0><br><br>\n");
	win1.document.write('<a href="#" onclick="window.print(); return false;" style="font:13px Arial, Helvetica, sans-serif;color:#cccccc;">распечатать</a><br><br></div></body></html>');
}