function swapTitle(theTitle,theId) {
	var displayedTitle = document.getElementById(theId);
	displayedTitle.firstChild.nodeValue = theTitle;
}
