<!--	
		//CREATE AN ARRAY
		function SetNameArray(item)
			{
				this.length = item
				return this
			}
		//SET MONTH AND WEEKDAY NAME ARRAYS
		Month = new SetNameArray(12)
		Month[1] = "/1"
		Month[2] = "/2"
		Month[3] = "/3"
		Month[4] = "/4"
		Month[5] = "/5"
		Month[6] = "/6"
		Month[7] = "/7"
		Month[8] = "/8"
		Month[9] = "/9"
		Month[10] = "/10"
		Month[11] = "/11" 
		Month[12] = "/12"

		WeekDay = new SetNameArray(7)
		WeekDay[1] = "Søndag"
		WeekDay[2] = "Mandag"
		WeekDay[3] = "Tirsdag"
		WeekDay[4] = "Onsdag"
		WeekDay[5] = "Torsdag"
		WeekDay[6] = "Fredag"
		WeekDay[7] = "Lørdag"

		//CALC THE DATE INFORMATION
		function TodaysDate(theDate)
			{
			var theWeekDay = WeekDay[theDate.getDay() + 1]
			var theMonth = Month[theDate.getMonth() + 1]
			var theYear = theDate.getYear()
			return theWeekDay + " " + theDate.getDate()+ theMonth + " - " + theYear   
			}
	//-->
