function showFilled(Value) {
return (Value > 9) ? "" + Value : "0" + Value;
}
function StartClock24() {
	now = new Date();
	var thday = new Array ("อาทิตย์.","จันทร์", "อังคาร","พุธ","พฤหัสบดี","ศุกร์","เสาร์");
	var thmonth = new Array ("มกราคม","กุมภาพันธ์", "มีนาคม","เมษายน","พฤษภาคม", "มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน", "ตุลาคม","พฤศจิกายน","ธันวาคม");
	var thyear=now.getYear()+543+"";
TheTime = new Date;
document.getElementById("showTime").innerHTML=  thday[now.getDay()]+ " "+ now.getDate()+ " " + thmonth[now.getMonth()]+ " " + thyear.substring(2)+' '+showFilled(TheTime.getHours()) + ":" +
showFilled(TheTime.getMinutes()) + ":" + showFilled(TheTime.getSeconds()) +" น.";
setTimeout("StartClock24()",1000)
}