function okno(jmeno,x,y,title,alt)
{
var okno=window.open('','okno','width='+x+',height='+y+',resizble=10,menubar=0,toolbar=0,left=10,top=10,directories=0,location=0,scrollbars=1,copyhistory=0');
okno.document.open();
okno.document.writeln('<html>\n<head>\n <title>'+title+'</title>\n<meta HTTP-EQUIV="Content-Type" content="text/html; charset=ISO-8859-2">\n</head>\n<body bgcolor="black" topmargin="0" leftmargin="0" bottommargin="0" rightmargin="0">');

okno.document.writeln('<table border="0" width="100%" height="100%"> <tr> <td width="100%" height="100%" align="center" valign="center"> <img src="'+jmeno+'" title="'+alt+'"> </td> </tr></table>');

okno.document.writeln('</body>\n</html>');
okno.document.close();
}
