	// 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);
		}
	}
              function Go2()
                {
                                if((document.dropDownLinkSelector.linkOptions.selectedIndex == 4)||(document.dropDownLinkSelector.linkOptions.selectedIndex == 6)) 
                                {
                                if(confirm("You are about to leave the Woodforest Website.\nYou may click OK to proceed or cancel to return."))
                                                {
                                                Go();
                                                }
                                }
                                else        
                                {
                                                Go();
                                }                              
                }

