

function clock() {
theTime = window.setTimeout("clock()", 1000);
var today = new Date();
return today.toLocaleString();

}


