/*------------------------------------------------
	Mike Perkins
	11/29/2006
------------------------------------------------*/

function Put(str)
{
	document.write(str);
}

function Footer()
{
	var ftr = "<div id='footer'>";
	ftr += "Copyright &copy; 1995-2006 <a href='http://www.uwplatt.edu/contact/'>University of Wisconsin-Platteville</a> and <a href='http://www.uwsa.edu/bor/'>The Board of Regents - University of Wisconsin System</a><br />";
	ftr += "<a href='http://www.uwplatt.edu/contact/'>1 University Plaza, Platteville, Wisconsin 53818-3099</a> - For more information, please call <a href='http://www.uwplatt.edu/contact/'>1-800-362-5515</a><br />";
	ftr += "Send comments to <a href='mailto:cont_ed@uwplatt.edu' accesskey='c'>UWP Continuing Education</a> - Last update: <a href='http://validator.w3.org/check/referer' accesskey='v'>" + document.lastModified + "</a>";
	ftr += "</div>";
	Put(ftr);
}

function Show(id)
{
	elm = document.getElementById(id);
	HideBlocks(elm.className);
	if(elm != null)
		elm.style.display = "block";
}

function HideBlocks(divblocks)
{
	elms = document.getElementsByTagName('div');
	for(i=0; i<elms.length; i++)
		if(elms[i].className == divblocks)
			elms[i].style.display = "none";
}
