<!--
	// this function displays the proper newsletter and its link depending on the edition selected.
	function display_newsletter(edition, container) {
		// get the container object to add HTML too.
		var news = document.getElementById(container);
		var HTMLOutput = "";
		
		// check to see which edition the user is requesting.
		switch (edition.toLowerCase()) {
			case "fall2008": HTMLOutput = "<a href=\"/downloads/pdfs/khnewsletter1108.pdf\" target=\"_blank\" title=\"Click here to download PDF\"><img src=\"/images/news/newsfall2008.jpg\" alt=\"Click here to download PDF\"style=\"border: 0;\" /></a>"; break;
			case "spring2009": HTMLOutput = "<a href=\"/downloads/pdfs/khnewsletter0509.pdf\" target=\"_blank\" title=\"Click here to download PDF\"><img src=\"/images/news/newsspring2009.jpg\" alt=\"Click here to download PDF\"style=\"border: 0;\" /></a>"; break;
		}
		
		// then output the newsletter.
		news.innerHTML = HTMLOutput;
	}
-->