	function HighlightLink(strID, strBackgroundColor, strBoldColor, name)
	{
		//This function changes the appearance of a link to make it stand out
		CurrentBackgroundColor = strID.style.backgroundColor
		CurrentFontColor = strID.style.color
		strID.style.color = strBoldColor;
		strID.style.fontWeight = "700";							//Makes the font bold
		strID.style.backgroundColor = strBackgroundColor;
		document.all(name).style.cursor = 'hand';
	}
	function ResetHighlightLink(strID, name)
	{
		//This function resets the appearance of a link back to it's original appearance
		strID.style.color = CurrentFontColor;
		strID.style.fontWeight = "400";
		strID.style.backgroundColor = CurrentBackgroundColor;
		document.all(name).style.cursor = 'auto';
	}
	function ChangeText(strText)
	{
		//This function changes the test for a text field with the name of Desc
		window.Desc.innerHTML = strText;
		window.Desc.style.fontWeight = "700";
	}
	function openpopup()
	{
		window.open("goodbye.htm","","width=300,height=200 top = 200 left=300")
	}
	
	function openTheWindow(URL)
	{

		parent.main.location.href = URL


	}