// JavaScript Document
//<![CDATA[
		var tempString = "";
		var userAgent = navigator.userAgent;
		var os = navigator.platform;

		if (os == 'Win32')
		{
			if (userAgent.match('Flock') || userAgent.match('K-Meleon') || userAgent.match('Netscape'))
			{
				tempString = "PC/Windows: press 'alt + access key number' to highlight link and go to the corresponding page.";
			}
			else if (userAgent.match('Opera'))
			{
				tempString = "PC/Windows: press 'shift + esc + key number' to highlight link and go to the corresponding page.";
			}
			else if ((navigator.appName == "Microsoft Internet Explorer") || (userAgent.match('Avant')))
			{
				tempString = "PC/Windows: press 'alt + access key number' to highlight link, then 'enter' to go to the corresponding page.";
			}
			else if (userAgent.match('Firefox') )
			{
				tempString = "PC/Windows: press 'alt + shift + access key number' to highlight link and to go to the corresponding page.";
			}
			else
			{
				tempString = "PC/Windows: press 'alt + access key number' to highlight link, then 'enter' to go to the corresponding page.";
			}
		}
		else if (os.match('Mac'))
		{
			tempString = "Macintosh: press 'control + access key number' to highlight link and go to the corresponding page.";
		}
		else if (os.match('Linux'))
		{
			tempString = "Linux: press 'control + access key number' to highlight link and go to the corresponding page.";
		}
		else if (tempString.length == 0)
		{
			tempString = "PC/Windows: press 'alt + access key number' to highlight link, then 'enter' to go to the corresponding page.";
		}
		else{}
		document.getElementById('accessKeyParagraph').innerHTML = tempString;
	//]]>
