function showMilitaryTime() {
	//if (document.form.showMilitary[0].checked) {
	//return true;
	//}
	return true;
}

function showTheHours(theHour) {
	if (showMilitaryTime() || (theHour > 0 && theHour < 13)) {
		if (theHour == "0") theHour = 0;
		return (theHour);
	}
	if (theHour == 0) {
		return (12);
	}
return (theHour-12);
}

function showZeroFilled(inValue) {
	if (inValue > 9) {
		return "" + inValue;
	}
	return "0" + inValue;
}

function tampilHari()
{
	var hariIni = new Date();
	var hari = hariIni.getDay();
	var tgl = hariIni.getDate();
	var bulan = hariIni.getMonth();
	var tahun = hariIni.getFullYear();
	var namaHari = new Array("Minggu","Senin","Selasa","Rabu","Kamis","Jum'at","Sabtu");
	var namaBulan = new Array("Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","Nopember","Desember");
	var hasil = namaHari[hari]+", "+tgl+" "+namaBulan[bulan]+" "+tahun;
	return hasil;
}

function showTheTime() {
	now = new Date
	document.FormTime.showTime.value = tampilHari()+"  "+showZeroFilled(showTheHours(now.getHours())) + ":" + showZeroFilled(now.getMinutes()) + ":" + showZeroFilled(now.getSeconds()); 
	//document.title=".: z.e.d Official Site :. -- "+tampilHari()+" --";
	//return true;
	setTimeout("showTheTime()",1000)
}