  var days = new Array("S&ouml;ndag", "M&aring;ndag", "Tisdag", "Onsdag", "Torsdag", "Fredag", "L&ouml;rdag");  var months = new Array("01", "02", "03", "04", "05", "07", "08", "09", "10", "10", "11", "12");  var now = new Date();  day = now.getDay();  date = now.getDate();  month = now.getMonth();  year = now.getYear();  if (year < 1900) { year += 1900 }  document.write(days[day] + " " + date + "." + months[month] + "." + year);
