// Thanks to the following website for this "reveal" script:
// http://bontragerconnection.com/library/hide-reveal-how-it-works.shtml
function InsertContent(tid) {

if(document.getElementById(tid).style.display == "none") {
	document.getElementById(tid).style.display = "";
	}
else {
	document.getElementById(tid).style.display = "none";
	}
}