function openimage(imagetitle, image, w, h)
{	
	if (!w){w=600};
	if (!h){h=500};
	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><meta http-equiv='Content-Type' content='text/html; charset=windows-1251'><link href='/css/style.css' type='text/css' rel='stylesheet'><title>"+imagetitle+"</title></head>\n");
	win1.document.write("<body topmargin=0 leftmargin=0 marginheight=0 marginwidth=0><table width=100% height=100% cellpadding=0 cellspacing=0>\n");
	win1.document.write("<tr><td align=center valign=center><img src='"+image+"' border=0></td></tr>\n");	
	win1.document.write("<tr><td align=center height='30'><a href='javascript:void(0);' onclick='javascript:window.close();'>закрыть окно</a></td></tr>\n");	
	win1.document.write("</table></body></html>");
}
