/* open windows*/
function WinOpen(src) 
{
	no = window.open(src,"","toolbar=0,location=0,status=0,menubar=0,directories=0;scrollbars=0,resizable=0,width=550,height=550,top=50,left=50",true);
		
	with (no.document)
	{
		open();
		writeln('<html>');
		writeln('<head>\n');
		writeln('<style type="text/css">');
		writeln('\tbody, table {text-align:center;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:8pt;margin:0;padding:0;margin-top:10px;color:#666;background-color:#fff;}');
		writeln('\ta, a.visited {color:#666;text-decoration:none;}');
		writeln('\ta:hover {color: #008c99;text-decoration: underline;}');
		writeln('\tspan {padding-right:5px;border-right:13px solid #008c99;}');
		writeln('</style></head>');
		writeln('<body>');
		writeln('\n<table border=0 align="center">');
		writeln('<tr><td>');
		writeln('\t<img src="' + src + '">');
		writeln('</td></tr>');
		writeln('<tr><td align="right">');
		writeln('\t<span>&raquo; <a href="javascript:window.close();">zavøít okno</a></span>');
		writeln('</td></tr>');
		writeln('</table>');
		writeln('\n</body>\n</html>');
		close();
		//focus();
	}		
}