function todaysDate() {
		var days = new Array("S&ouml;ndag", "M&aring;ndag", "Tisdag", "Onsdag", "Torsdag", "Fredag", "L&ouml;rdag");
		var months = new Array("Januari", "Februari", "Mars", "April", "Maj", "Juni", "Juli", "Augusti", "September", "Oktober", "November", "December");
		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);
}	

function countChars(chars, counterid, textid, messagetext) {
		document.getElementById(counterid).value = maxlimit-chars;
		if (chars > 400) { 
			document.getElementById(textid).value = messagetext.substring(0, maxlimit);
		}
} 
