﻿
function startclock() {
    var thetime = new Date();

    var nhours = thetime.getHours();
    var nmins = thetime.getMinutes();
    var nsecn = thetime.getSeconds();
    var nday = thetime.getDay();
    var nmonth = thetime.getMonth();
    var ntoday = thetime.getDate();
    var nyear = thetime.getYear();
    var AorP = " ";

    if (nhours >= 12)
        AorP = "م.";
    else
        AorP = "ص.";

    if (nhours >= 13)
        nhours -= 12;

    if (nhours == 0)
        nhours = 12;

    if (nsecn < 10)
        nsecn = "0" + nsecn;

    if (nmins < 10)
        nmins = "0" + nmins;

    if (nday == 0)
        nday = "الأحد";
    if (nday == 1)
        nday = "الأثنين";
    if (nday == 2)
        nday = "الثلاثاء";
    if (nday == 3)
        nday = "الأربعاء";
    if (nday == 4)
        nday = "الخميس";
    if (nday == 5)
        nday = "الجمعة";
    if (nday == 6)
        nday = "السبت";

    nmonth += 1;

    if (nyear <= 99)
        nyear = "19" + nyear;

    if ((nyear > 99) && (nyear < 2000))
        nyear += 1900;


    var datetext, timetext;
    
    document.getElementById('Dateing').innerHTML =  nday + ", " + ntoday + "/" + nmonth + "/" + nyear;
    document.getElementById('Timing').innerHTML = nhours + ": " + nmins + ": " + nsecn + " " + AorP;

    setTimeout('startclock()', 1000);

} 
