//Script pro otevreni noveho okna s vlozenym obrazkem
//---------------------------------------------------

function noveOkno(source, w, h)
{
	okno=window.open("","_blank","left=1,top=1,width=10,height=10,left=0,top=0,resizable=yes,scrollbars=no");
	okno.resizeTo(w+10,h+10);

	with(okno.document)
	{
			open();
			writeln('<html>\n<head><TITLE>'+source+'</TITLE></head><body bgcolor=black topmargin="0" leftmargin="0">');
			writeln('<img src='+ source +' width=' + w +' height=' +h+' onClick="window.close();return false;">');
			writeln('</body>\n</html>');
			close();
	}
	okno.focus();
}
