//display window
var JSFSplashWin = null;
function okienko(url) {
	JSFSplashWin = window.open("", "splash", "fullscreen=yes,scrollbars=no");
	JSFSplashWin.document.open();
	JSFSplashWin.document.clear();
	JSFSplashWin.document.write('<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" scroll=no bgcolor="#000000"><script language="javascript" src="click.js"></script><table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"><tr><td width="50%" height="50%">&nbsp;</td><td height="50%">&nbsp;</td><td width="50%" height="50%">&nbsp;</td></tr><tr><td width="50%">&nbsp;</td><td align="center"><a href="#" OnClick="window.close()"><img src="' + url + '" border="0" alt="Kliknij aby zamkn±æ okienko"></a></td><td width="50%">&nbsp;</td></tr><tr><td width="50%" height="40">&nbsp;</td><td height="40" align="right"><img src="img/copy.gif"></td><td width="50%" height="40">&nbsp;</td></tr><tr><td width="50%" height="50%">&nbsp;</td><td height="50%">&nbsp;</td><td width="50%" height="50%">&nbsp;</td></tr></table></body>');
	JSFSplashWin.document.close();
	JSFSplashWin.focus();	
}

