<!--
var months = new Array();
months[0] = "januari";
months[1] = "februari";
months[2] = "mars";
months[3] = "april";
months[4] = "maj";
months[5] = "juni";
months[6] = "juli";
months[7] = "augusti";
months[8] = "september";
months[9] = "oktober";
months[10] = "november";
months[11] = "december";
                        
var days = new Array();
days[0] = "Söndag";
days[1] = "Måndag";
days[2] = "Tisdag";
days[3] = "Onsdag";
days[4] = "Torsdag";
days[5] = "Fredag";
days[6] = "Lördag";

update = new Date(document.lastModified);
var tmonth = update.getMonth();
var tday = update.getDate()
var tyear = update.getFullYear();
/*update = new Date(document.lastModified);
theMonth = update.getMonth()+1;
if(theMonth<10)theMonth="0"+theMonth;
theDate = update.getDate();
if(theDate<10)theDate="0"+theDate;
theYear = update.getYear();
if(theYear<2000) theYear=1900+theYear;
document.write("Sidan senast uppdaterad " + theYear + "-" + theMonth + "-" + theDate);*/
var theDate = tday + " " + months[tmonth] + " " + tyear;
document.write("<div id = 'datum' style='font-family:verdana;font-size:12pt;text-align:center'>Sidan senast uppdaterad  " + theDate + "</DIV>");
//-->