// <![CDATA[
function init(){}
// ]]>

// <![CDATA[
function popup(adres,szer,wys) {
okno = window.open(adres,'', 'width='+szer+',height='+wys+',scrollbars=yes');
okno.focus();
}
// ]]>

// <![CDATA[
function scrollbar() {
	with (document.body.style)
	{
		scrollbarDarkShadowColor="white";
		scrollbar3dLightColor="gray";
		scrollbarArrowColor="gray";
		scrollbarBaseColor="white";
		scrollbarFaceColor="white";
		scrollbarHighlightColor="white";
		scrollbarShadowColor="gray";
		scrollbarTrackColor="white";
	}
}
scrollbar();
// ]]>

// <![CDATA[
function detectPopupBlocker() 
{ 
	var myTest = window.open("about:blank","","directories=no,height=0,width=0,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,top=10000,left=10000,location=no");
	if (!myTest) 
	{
		document.write('<div style="width: 600px; color: #999; text-align: left; border: 0px solid gray; margin: 0px auto; padding: 10px; background-color: #f6f6f6">');
		document.write('Wykryte zostało blokowanie okienek typu Pop-up.<br />');
		document.write('Aby móc w pełni korzystać z możliwości serwisu należy zezwolić na uruchamianie okien Pop-up.');
		document.write('<br /><br />');
		document.write('W przypadku systemu Windows XP SP2 należy wejść do menu:<br /><i>Narzędzia/Opcje internetowe/');
		document.write('Prywatność/Blokowanie wyskakujacych okienek/Ustawienia</i><br />');
		document.write(' i dodać tę witrynę do dozwolonych.</div>');
	}
	else 
	{ 
		myTest.blur();
		myTest.close(); 
	} 
} 
// ]]>