// JavaScript Document<!-- The JavaScript Source!! http://javascript.internet.com -->		var days = new Array(8);		days[1] = "s&ouml;ndag";		days[2] = "m&aring;ndag";		days[3] = "tisdag";		days[4] = "onsdag";		days[5] = "torsdag";		days[6] = "fredag";		days[7] = "l&ouml;rdag";		var months = new Array(13);		months[1] = "januari";		months[2] = "februari";		months[3] = "mars";		months[4] = "april";		months[5] = "maj";		months[6] = "juni";		months[7] = "juli";		months[8] = "augusti";		months[9] = "september";		months[10] = "oktober";		months[11] = "november";		months[12] = "december";		var dateObj = new Date(document.lastModified)		var wday = days[dateObj.getDay() + 1]		var lmonth = months[dateObj.getMonth() + 1]		var date = dateObj.getDate()		var fyear = dateObj.getYear()		if (fyear < 2000) 		fyear = fyear + 1900		document.write("Uppdaterad " + date + " " + lmonth + ", " + fyear)	
