<!--
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("Nedan senast uppdaterad " + theYear + "-" + theMonth + "-" +theDate );
//-->
