function openimage(imagetitle, image, w, h)
{
	if (!w){w=400};
	if (!h){h=520};
	win1 = open("", "_blank", "toolbar=0,status=0,location=0,menubar=0,directories=0,scrollbars=0,resizeable=0,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/styles.css' type='text/css'></head>\n");
	win1.document.write("<body topmargin=0 leftmargin=0 marginheight=0 marginwidth=0><table width=100% height=100% cellpadding=0 cellspacing=5>\n");
	win1.document.write("<tr><td align=center><img src='/images/"+image+"' border=0></td></tr>\n");
	win1.document.write("<tr><td align=center><a href=javascript:window.close()>Закрыть окно</a></td></tr>\n");
	win1.document.write("</table></body></html>");
}

