// Pełne ukrywanie wiadomości na pasku stanu

function hidestatus(){
	window.status='www.xboxxn.com'
	return true
}

if (document.layers)
	document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

	document.onmouseover=hidestatus
	document.onmouseout=hidestatus



function PokazOkno(url, width, height) {
	var marhinLeft = (screen.width - width) / 2;
 	var marhinTop = (screen.height - height) / 2;

        var Okno = window.open(url,"PokazOkno", 'width=' + width + ',height=' + height + ', left=' + marhinLeft + ', top=' + marhinTop+ ',resizable=no, scrollbars=no, status=no menubar=no' );
}