var timerID = null
var timerRunning = false
function MakeArray(size) 
{
this.length = size;
for(var i = 1; i <= size; i++)
{
this[i] = "";
}
return this;
}
function stopclock (){
if(timerRunning)
clearTimeout(timerID);
timerRunning = false
}
function showtime () {
var now = new Date();
var year = now.getUTCFullYear(); 
var month = now.getMonth() + 1;
var date = now.getDate();
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds();
var day = now.getDay();
Day = new MakeArray(7);
Day[0]="Chủ nhật";
Day[1]="Thứ hai ";
Day[2]="Thứ ba";
Day[3]="Thứ tư";
Day[4]="Thứ năm";
Day[5]="Thứ sáu";
Day[6]="Thứ 7";
var timeValue = "";
timeValue += (Day[day]) + ", ngày ";
timeValue += date + "-";
timeValue += ((month < 10) ? "0" : "") + month + "-";
timeValue += year + " ";
timeValue += hours;
//((hours <= 12) ? hours : hours - 12);
timeValue += ((minutes < 10) ? ":0" : ":") + minutes;
timeValue += ((seconds < 10) ? ":0" : ":") + seconds;
//timeValue += (hours < 12) ? " AM" : " PM";
timerRunning = true
return timeValue;
}
function startclock () {
stopclock();
showtime()
}
