
<!--

today = new Date()
document.write(today.getDate(),"/",today.getMonth()+1,"/",today.getYear(), " ");

document.write("<span id='clock'></span>");
var now,hours,minutes,seconds,timeValue;
function showtime(){

now = new Date();
hours = now.getHours();
minutes = now.getMinutes();
seconds = now.getSeconds();
timeValue = ((hours > 12) ? hours - 12 : hours) + ":";
timeValue += ((minutes < 10) ? " 0" : " ") + minutes + ":";
timeValue += ((seconds < 10) ? " 0" : " ") + seconds + " ";
timeValue += (hours >= 12) ? "p.m." : "a.m.";
clock.innerHTML = timeValue;
setTimeout("showtime()",100);
}
showtime();
//-->
