	var mydate=new Date()
	var year=mydate.getYear()
	if (year < 1000)
	year+=1900
	var day=mydate.getDay()
	var month=mydate.getMonth()+1
	if (month<10)
	month="0"+month
	var daym=mydate.getDate()
	if (daym<10)
	daym="0"+daym

	//if (document.all||document.getElementById)
	//document.write('<span id="worldclock" style="position:absolute; top:120; left:380; font:bold 15px Arial; color:#ffffff;"></span>')

	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;
		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);
		hr = now.getHours();
		//hrs=-1.575+Math.PI*hr/6+Math.PI*parseInt(now.getMinutes())/360;
		//if (hr < 0) hr+=24;
		ampm = (hr > 11)?"PM":"AM";
		if (hr > 12) hr-=12;
		statusampm = ampm;//.toLowerCase();
	
		hr2 = hr;
		if (hr2 == 0) hr2=12;
		(hr2 < 13)?hr2:hr2 %= 12;
		if (hr2<10) hr2="0"+hr2

		var finaltime=hr+':'+((mins < 10)?"0"+mins:mins)+':'+((secs < 10)?"0"+secs:secs)+ ' ' +statusampm +'&nbsp;&nbsp;&nbsp;'+month+'/'+daym+'/'+year;
	
		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();
	WorldClock();
