function new_window(wdth, hght, name_str, news_str) {

  now = new Date();
  newWindow=window.open('',now.getTime(),'width=' + wdth + ', height=' + hght);
  newWindow.document.writeln('<html><head>');
  newWindow.document.writeln('<title>' + name_str + '</title>');
  newWindow.document.writeln('<link href="/style.css" rel="stylesheet">');
  newWindow.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">');
  newWindow.document.writeln('</head>');
  newWindow.document.writeln('<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>');
  newWindow.document.writeln('<table width=100% cellspacing=0 cellpadding=20 border=0>');
  newWindow.document.writeln('<tr><td bgcolor="#CDD2D4"><h2>' + name_str + '</h2></td></tr>');
  newWindow.document.writeln('<tr><td>' + news_str + '</td></tr>');
  newWindow.document.writeln('</table>');
  newWindow.document.writeln('</body></html>');
}



