  now = new Date();
    localtime = now.toString();
    hours = now.getHours();
    mins = now.getMinutes();
    secs = now.getSeconds();

if (mins <= 9) { mins = "0"+mins; }
if (secs <= 9) { secs = "0"+secs; }
if (hours <= 9) { hours = "0"+hours; }

    document.write("<font size='2' font color ='#6AA1D8' face='Verdana'>");
    document.write("<font size='2' font color ='#6AA1D8' face='Verdana'>");
   document.write(hours + ":" + mins + ":" + secs);
   document.write("</font>");