function otworz_okno_html_demo_str(nazwa_str,tytul)
{
okienko = window.open('','okno_demo_str','resizable=yes,location=yes,scrollbars=yes,menubar=yes,toolbar=yes,status=yes');
with(okienko.document) 
{
writeln('<html>');
writeln('<head>');
writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">');
writeln('<title>' + tytul + '</title>');
writeln('</head>');
writeln('<frameset cols="0,*" border="0" frameborder="0" framespace="0">');
writeln('<frame scrolling="yes" name="ramka_menu"  frame noresize>');
writeln('<frame scrolling=\"yes\" name=\"ramka_wasze_stawy\" frame noresize src=\"' + nazwa_str +'\">');
writeln('</frameset>');
writeln('<noframes>');
writeln('<body bgcolor="#D5AB6C" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" marginheight="0" marginwidth="0" >')
writeln('</body>');
writeln('</noframes>');
writeln('</html>');
};
};
