//Show/hide a help div by calling the ShowHideHelp and passing in the name of the dvi to show/hide
function ShowHelp(ItemToShow) {
	var myAlphabate=['A','C','D','E','I','M','O','P','R','S','T','V','W'];
		document.getElementById(ItemToShow).style.visibility = 'visible';
		document.getElementById('divList').scrollTop=0;
		
		for (var i=0; i<myAlphabate.length; i++)
		{
			if (myAlphabate[i] != ItemToShow)
			{
				document.getElementById(myAlphabate[i]).style.visibility = 'hidden';
			}
		}
		return false;

}
