var Clock_Days = new Array("Niedziela", "Poniedziałek", "Wtorek", "Środa", "Czwartek", "Piątek", "Sobota");
var Clock_Months = new Array("stycznia", "lutego", "marca", "kwietnia", "maja", "czerwca", "lipca", "sierpnia", "września", "października", "listopada", "grudnia");

function Clock_StepIt(clockID){
	window.setTimeout("Clock('"+clockID+"');", 1000);
}

function Clock(clockID){
	var tDate = new Date();
	wd = tDate.getDay();
	d = tDate.getDate();
	m = tDate.getMonth();
	y = tDate.getFullYear();
	h = tDate.getHours(); if (h<10) {h = "0"+h;}
	i = tDate.getMinutes(); if (i<10) {i = "0"+i;}
	s = tDate.getSeconds(); if (s<10) {s = "0"+s;}
	
	outp = Clock_Days[wd]+', '+d+' '+Clock_Months[m]+' '+y+' &nbsp; '+h+':'+i+'.'+s;
	document.getElementById(clockID).innerHTML = outp;
	
	Clock_StepIt(clockID);
}

function Sys_stripURL(url){
	url = url.split('?');
	url = url[0];
	return url;
}


function Sys_add2Favorites(){
	var location = document.location.href;
	location = Sys_stripURL(location);
	window.external.AddFavorite(location, document.title);
}


function Sys_setHomePage(obj){
	var location = document.location.href;
	location = Sys_stripURL(location);
	obj.style.behavior='url(#default#homepage)';
	obj.setHomePage(location);
}

function PopupImage(url){
	window.open('images.php?mode=show&url='+url,'_blank',"menubar=no,location=no,resizeable=no,scrollbars=auto,status=no,width=400,height=200");
}

function OpenClearWnd(url,w,h,scroll){
	window.open(url, "_blank", "menubar=no,location=no,resizeable=no,scrollbars="+scroll+",status=no,width="+w+", height="+h);
}