// 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 now leaving the Woodforest National Bank website.  Woodforest National Bank does not provide, and is not responsible for, the products, services or overall website content of third-party websites.  Our privacy policies do not apply to linked websites.  Please review the terms and conditions and the privacy policy posted on any other website you may use. \n\n      Please 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)||(document.dropDownLinkSelector.linkOptions.selectedIndex == 1)||(document.dropDownLinkSelector.linkOptions.selectedIndex == 7)) 
                {
                    if (confirm("      You are now leaving the Woodforest National Bank website.  Woodforest National Bank does not provide, and is not responsible for, the products, services or overall website content of third-party websites.  Our privacy policies do not apply to linked websites.  Please review the terms and conditions and the privacy policy posted on any other website you may use. \n\n      Please click OK to proceed or Cancel to return."))
                                {
                                Go();
                                }
                }
                else        
                {
                                Go();
                }                              
}



function clearSearch(item)
{
    item.value = "";    
}

