    function showLocalDateTime() {
        var now = new Date();
        now.setUTCHours(now.getUTCHours() + 6);  //we use GMT- time to get Hours and then add Tumen time offset.
        var day=now.getDate();
        var months=["01","02","03","04","05","06","07","08","09","10","11","12"];
        var months_names=["января","февраля","марта","апреля","мая","июня","июля","августа","сентября","октября","ноября","декабря"];
        var month=now.getMonth();
        var lmonth=months_names[month];
        var days=["понедельник", "вторник", "среда", "четверг", "пятница", "суббота", "воскресенье"];
        var curDayIndex = (now.getDay() - 1)<0?6:(now.getDay() - 1);
        var ldays=days[curDayIndex];
        var year=now.getFullYear();
        var h=now.getUTCHours();
        var m=now.getMinutes();
        var s=now.getSeconds();
        var time = (((h<10)?"0":"")+h)+":"+(((m<10)?"0":"")+m)+":"+(((s<10)?"0":"")+s);
        return day+" "+lmonth+" "+year+", "+h+":"+(((m<10)?"0":"")+ m.toString());
    }
    function startClock(clockName) {
        var div=document.getElementById(clockName);
        if (!div) return;
        div.innerHTML=showLocalDateTime();
        setTimeout("startClock('"+clockName+"')",1000);
    }
