function colorBar(){
var w = document.body.clientWidth;
var h = document.body.clientHeight;
var x = event.clientX;
var y = event.clientY;
if(x>w) scrollBar('red','white'); // Twoje kolory
else scrollBar(null,null,"neo"); // Wybór szablonu
}


function InitTheme()
{
	if (document.all)
	{
		scrollBar(null,null,"neo");
		document.onmousemove=colorBar;
	}
}

function open_w(url, w, h)
{
	window.open('popup/'+dir+'/'+url+'.html', dir, 'width='+w+',height='+h+',scrollbars=no');
}
