function newWin(nameImg,width,height,Title)
{
win=window.open("","","width="+width+"px ,height="+height+"px");
win.document.write('<html><head><title>'+Title+'</title><meta HTTP-EQUIV="Content-Type" content="text/html; charset=windows-1251"></head><body bgcolor="#FFFFFF" marginheight=0 marginwidth=0 topmargin=0 leftmargin=0 rightmargin=0 bottommargin=0 >');
win.document.write('<table cellpadding=0 cellspacing=0 border=0 width=100% height=100%><tr><td valign=middle align=center><img src="'+nameImg+'" style="cursor:hand;" onclick="window.close();" alt="Закрыть окно"></td></tr></table></body></html>');
}
