	// Select drop down to jump to a URL
	function Go() 
	{
		if (document.dropDownLinkSelector.linkOptions[document.dropDownLinkSelector.linkOptions.selectedIndex].value !== "") 
		{
			//alert(document.dropDownLinkSelector.linkOptions[document.dropDownLinkSelector.linkOptions.selectedIndex].value);
			window.location = document.dropDownLinkSelector.linkOptions[document.dropDownLinkSelector.linkOptions.selectedIndex].value;
		}
	}
	
	function exitSite(exitLink)
	{
		var agree = confirm("You are about to leave the Woodforest Website.\nYou may click OK to proceed or cancel to return.");

		if (agree)
		{
			window.open(exitLink);
		}
	}

