<!-- javascript dato funktion
function writeDate(){
  var this_month = new Array();
      this_month[0] = "januar";
      this_month[1] = "februar";
      this_month[2] = "marts";
      this_month[3] = "april";
      this_month[4] = "maj";
      this_month[5] = "juni";
      this_month[6] = "juli";
      this_month[7] = "august";
      this_month[8] = "september";
      this_month[9] = "oktober";
      this_month[10] = "november";
      this_month[11] = "december";
  var today = new Date();
  var day = today.getDate();
  var month = today.getMonth();
  var year = today.getYear();
    year <= 200 ? year += 1900 : 0;  
  var time = today.getHours();
    today.getMinutes() < 10 ? time = time+":0"+today.getMinutes() : time = time+":"+today.getMinutes();
  return( day + ". " + this_month[month] + " " + year );
}
//   -->
