// Anytime Anywhere Web Page Clock Generator
// Clock Script Generated at
// http://www.rainbow.arch.scriptmania.com/tools/clock

function tS(){ x=new Date(); x.setTime(x.getTime()); return x; } 
function lZ(x){ return (x>9)?x:'0'+x; } 
function y2(x){ x=(x<500)?x+1900:x; return String(x).substring(2,4) } 

function dT(){ 
if(fr==0){ 
	fr=1; 
	document.getElementById('time').innerHTML = eval(oT); 
} 

document.getElementById('time').innerHTML=eval(oT); 
setTimeout('dT()',1000); 
} 

var dN=
	new Array('N','Pn','Wt','&#346;r','C&#378;','Pt','So'),
	mN=new Array('sty','lut','mar','kwi','maj','cze','lip','sie','wrz','pa&#380;','lis','gru'),
	fr=0,
	oT="dN[tS().getDay()]+' '+tS().getDate()+' '+mN[tS().getMonth()]+' '+y2(tS().getYear())+' '+' &nbsp;'+' '+lZ(tS().getHours())+':'+lZ(tS().getMinutes())+':'+lZ(tS().getSeconds())+' '";



// Use the following within your HTML to Start/display your clock
// <script language="JavaScript">dT();</script>
