    function UR_Start()
      {
        UR_Nu = new Date;
        UR_Indhold = showFilled(UR_Nu.getHours()) + ":" + showFilled(UR_Nu.getMinutes()) + ":" + showFilled(UR_Nu.getSeconds());
        document.getElementById("ur").innerHTML = UR_Indhold;
         // date
        date= UR_Nu.getDate();
        month= UR_Nu.getMonth()+1;
        year= UR_Nu.getYear();
        dateStr= "" + month;
        dateStr+= ((date < 10) ? "/0" : "/") + date;
        dateStr+= "/" + year;
        document.getElementById("urd").innerHTML = dateStr;
        setTimeout("UR_Start()",1000);
      }
      function showFilled(Value)
      {
        return (Value > 9) ? "" + Value : "0" + Value;
      }
