﻿function StartClocks() {
    //window.setInterval("PutTime()",1000);
}

function PutTime() {
	return;
    var LocalDate=new Date();
    var LocalHours=LocalDate.getHours() + "";
    var LocalMinutes=LocalDate.getMinutes() + "";
    var LocalSeconds=LocalDate.getSeconds() + "";

    if (LocalHours.length==1) 
        LocalHours="0" + LocalHours;

    if (LocalMinutes.length==1)
        LocalMinutes="0" + LocalMinutes;

    if (LocalSeconds.length==1) 
        LocalSeconds="0" + LocalSeconds;

    document.getElementById('LocalTimer').innerHTML=LocalHours + ":" + LocalMinutes + ":" + LocalSeconds;
}
