if (document.all||document.getElementById)
document.write('<span id="worldclock" style="color:#c08080; font:12px Arial;"></span>&#160;&#160;&#160;&#160;<br>')
zone=0; isitlocal=true; ampm='';
function updateclock(z){
zone=z.options[z.selectedIndex].value;
isitlocal=(z.options[0].selected)?true:false;
}
function WorldClock(){
now=new Date();
ofst=now.getTimezoneOffset()/60;
year = now.getYear();
year2 = now.getYear() - 2000;
if(year2<=9){year2='0'+year2;}
mon=now.getMonth()+1;
day=now.getDay();
var date = now.getDate();
var zday=new Array(7)
if (day==0) {zday="Ni"};
if (day==1) {zday="Pn"};
if (day==2) {zday="Wt"};
if (day==3) {zday="Śr"};
if (day==4) {zday="Cz"};
if (day==5) {zday="Pt"};
if (day==6) {zday="So"};
var zmon = new Array(12)
if (mon==1) {zmon="Styczeń"};
if (mon==2) {zmon="Luty"};
if (mon==3) {zmon="Marzec"};
if (mon==4) {zmon="Kwiecień"};
if (mon==5) {zmon="Maj"};
if (mon==6) {zmon="Czerwiec"};
if (mon==7) {zmon="Lipiec"};
if (mon==8) {zmon="Sierpień"};
if (mon==9) {zmon="Wrzesień"};
if (mon==10) {zmon="Październik"};
if (mon==11) {zmon="Listopad"};
if (mon==12) {zmon="Grudzień"};
secs=now.getSeconds();
sec=-1.57+Math.PI*secs/30;
mins=now.getMinutes();
min=-1.57+Math.PI*mins/30;
hr=(isitlocal)?now.getHours():(now.getHours() + parseInt(ofst)) + parseInt(zone);
hrs=-1.575+Math.PI*hr/6+Math.PI*parseInt(now.getMinutes())/360;
if (hr < 0) hr+=24;
if (hr > 23) hr-=24;
ampm = (hr > 11)?"PM":"AM";
statusampm = ampm.toLowerCase();
hr2 = hr;
if (hr2 == 0) hr2=12;
(hr2 < 13)?hr2:hr2 %= 12;
if (hr2<10) hr2="0"+hr2
var finaltime= date+" "+zmon+" "+year+", "+hr+':'+((mins < 10)?"0"+mins:mins); //+':'+((secs < 10)?"0"+secs:secs)+' '+statusampm;
if (document.all)
worldclock.innerHTML=finaltime
else if (document.getElementById)
document.getElementById("worldclock").innerHTML=finaltime
else if (document.layers){
document.worldclockns.document.worldclockns2.document.write(finaltime)
document.worldclockns.document.worldclockns2.document.close()
}
setTimeout('WorldClock()',1000);
}
window.onload=WorldClock
