document.writeln('		<table cellpadding="0" cellspacing="0" border="0" width="100%">');
document.writeln('			<tr>');
document.writeln('				<td width="100%" valign=top align=right nowrap><span id="clock" style="font-size:10pt; color: #005173"></td>');
document.writeln('			</tr>');
document.writeln('		</table>');
var dayarray=new Array("&#3623;&#3633;&#3609;&#3629;&#3634;&#3607;&#3636;&#3605;&#3618;&#3660;","&#3623;&#3633;&#3609;&#3592;&#3633;&#3609;&#3607;&#3619;&#3660;","&#3623;&#3633;&#3609;&#3629;&#3633;&#3591;&#3588;&#3634;&#3619;","&#3623;&#3633;&#3609;&#3614;&#3640;&#3608;","&#3623;&#3633;&#3609;&#3614;&#3620;&#3627;&#3633;&#3626;&#3631;","&#3623;&#3633;&#3609;&#3623;&#3633;&#3609;&#3624;&#3640;&#3585;&#3619;&#3660;","&#3623;&#3633;&#3609;&#3648;&#3626;&#3634;&#3619;&#3660;")
var montharray=new Array("&#3617;&#3585;&#3619;&#3634;&#3588;&#3617;","&#3585;&#3640;&#3617;&#3616;&#3634;&#3614;&#3633;&#3609;&#3608;&#3660;","&#3617;&#3637;&#3609;&#3634;&#3588;&#3617;","&#3648;&#3617;&#3625;&#3634;&#3618;&#3609;","&#3614;&#3620;&#3625;&#3616;&#3634;&#3588;&#3617;","&#3617;&#3636;&#3606;&#3640;&#3609;&#3634;&#3618;&#3609;","&#3585;&#3619;&#3585;&#3598;&#3634;&#3588;&#3617;","&#3626;&#3636;&#3591;&#3627;&#3634;&#3588;&#3617;","&#3585;&#3633;&#3609;&#3618;&#3634;&#3618;&#3609;","&#3605;&#3640;&#3621;&#3634;&#3588;&#3617;","&#3614;&#3620;&#3624;&#3592;&#3636;&#3585;&#3634;&#3618;&#3609;","&#3608;&#3633;&#3609;&#3623;&#3634;&#3588;&#3617;")
function getthedate(){
var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
year+=543 //Buddha Year Correction
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
var hours=mydate.getHours()
var minutes=mydate.getMinutes()
var seconds=mydate.getSeconds()
{
 d = new Date();
 Time24H = new Date();
 Time24H.setTime(d.getTime() + (d.getTimezoneOffset()*60000) + 3600000);
 InternetTime = Math.round((Time24H.getHours()*60+Time24H.getMinutes()) / 1.44);
}
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
var cdate=dayarray[day]+" "+daym+" "+montharray[month]+" "+year+" <> "+hours+":"+minutes+":"+seconds+" &#3609;.&nbsp;&nbsp;&nbsp;"
if (document.all)
document.all.clock.innerHTML=cdate
else if (document.getElementById)
document.getElementById("clock").innerHTML=cdate
else
document.write(cdate)
}
if (!document.all&&!document.getElementById)
getthedate()
function goforit(){
if (document.all||document.getElementById)
setInterval("getthedate()",1000)
}
window.onload=goforit