//	Set Properties
	var bln24HourClock = 0;
	var strSuffix = "";

	function show_clock() 
	{
		seconds++;
		
		if (seconds >= 60) 
		{			
			seconds = "0";
			minutes++;
			if (minutes <= 9) { minutes = "0"+minutes; }
		}
		if (minutes >= 60) 
		{
			minutes = "0";
			hours++;
			if (hours <= 9) { hours = "0"+hours; }
		}
		if (hours >= 24) 
		{
			hours = "00";
		}
		
		if (bln24HourClock) 
		{
			strSuffix = "AM";
			if (hours > 12) { strSuffix = "PM"; hours = hours - 12; }
			if (hours == 0) { hours = 12; }
		} else 
		{
			strSuffix = "";
		}
		
		if (seconds <= 9) { seconds = "0"+seconds; }
		if (minutes == "0") { minutes = "00"; }
		if (minutes.length == 1) { minutes = "0" + minutes; }
		if (hours.length == 1) { hours = "0" + hours; }

		myclock = '';
		myclock += clock_prefix + ' ';
		myclock += hours+':'+minutes+':'+seconds+' '+strSuffix;

		window.status = myclock;

		setTimeout("show_clock()",1000);
	}

