/*  New Information Added Date  */
  
    Month = Array("January", "February","March", "April", "May","June",
        "July", "August", "September", "October","November", "December")
    
    lastmod = document.lastModified
    ModDate = new Date(lastmod)
    Mday = ModDate.getDate()
    Number = ModDate.getMonth()
    Year = ModDate.getFullYear()
    Hours = ModDate.getHours()
    pm = " pm."
        if (Hours < 12) {pm = " am."}
        if (Hours == 0) {Hours = "12"}
        if (Hours > 12) {Hours = Hours - 12}
        Minutes = ModDate.getMinutes()
        if (Minutes <= 9) { Minutes = "0"+Minutes; }
    mn = "th."

    // Fix the "mn" variable if needed://
        if (Mday == 1) { mn = "st."; }
        else if (Mday == 2) { mn = "nd."; }
        else if (Mday == 3) { mn = "rd."; }
        else if (Mday == 21) { mn = "st."; }
        else if (Mday == 22) { mn = "nd."; }
        else if (Mday == 23) { mn = "rd."; }
        else if (Mday == 31) { mn = "st."; }

    document.write("Updated :- "
        +Hours+":"+Minutes+pm+" "+Mday+mn+" "
        +Month[Number]+" "+Year)

