<!--
//set last shown pointer to FirstOn, the id of the initial div
var kid = "FirstOn"

function ShowInfo(DivId)

		{

		document.getElementById(kid).style.display = 'none';
		document.getElementById(DivId).style.display = 'block';
		kid = DivId;

		}
-->