function openw(width, height, title, file)
{
wind = open ('', '_req_info', 'height=' + height + ', resizable=yes, scrollbars=no, width='+ width);
wind.document.write('<html><head><title>' + title + '</title><link rel="stylesheet" href="includes/aci.css" type="text/css"></head><body bgcolor="#000000" text="#ffffff" topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0"><table cellspacing="0" cellpadding="0" align="center">');
wind.document.write('<tr><td align="center"><img src="' + file + '" border="0" onclick="javascript:window.close()" style="cursor:hand;" class="pic"></td></tr>');
wind.document.write('<tr><td><br><p align="center"><a href="javascript:window.close()" style="font-weight: bold;" class="txt">Закрыть окно</a></p></td></tr>');
wind.document.write('</table></body>');
wind.document.close();
}