function goLink(inName)
{
	// turns a drop down list into a set of links
	// the list must be named 'anchorLinks'

	if (document.all)	// if IE version 4, 5 or 6
	{
		document.all.anchorLinks.value = "";
		location.href = inName;
	}
}


function curPageShow(curPage)
{
	// changes the color of the link to the current page
	// called from the body tag's onload event  

	if (document.all)	// if IE version 4, 5 or 6
	{
		document.all[curPage].all[0].style.color = '#ffffcc';
	}
}