var eventsDivID = "approachingEvents";

function displayEvent(date, title, place, information){

	information = information.replace(/<br \/>/g, "\n")
	document.getElementById(eventsDivID).innerHTML = "<b>" + title + "</b> " + date + "<BR>@" + place +"<textarea style=\"font-family:'Arial';font-size:0.85em;margin-left:4px;height:80px;width:185px\" readonly>" + information + "</textarea>";
}

