function ShowWin (UrlPic, text, wd, hg)
{
myWin = open("", "displayWindow", "width="+wd+",height="+hg+",scrollbars=yes,status=no,toolbar=no,menubar=no,align=center");
myWin.document.open();
myWin.document.writeln('<html>');
myWin.document.writeln('<head>');
myWin.document.writeln('<title>' + text + '</title>');
myWin.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=windows-1251"></head>');
myWin.document.writeln('<link rel="stylesheet" href="http://dynamic.igce.ru/css/template_css.css" type="text/css"/>');
myWin.document.writeln('</head>');
myWin.document.writeln('<body>');
myWin.document.writeln('<p>&nbsp;<br>&nbsp;</p>');
myWin.document.writeln('<p align="center">' + text + '</p>');
myWin.document.writeln('<div align="center">');
myWin.document.writeln('<img border="1" src="'+UrlPic+'" valign="top">');
myWin.document.writeln('</div>');
myWin.document.writeln('</body>');
myWin.document.write('</html>');
return false;
}
