//thirdPartyAlert
function thirdPartyAlert(URL)
{
	var accept = confirm("You are now leaving the First National Bank of Jacksboro's website.  To remain at our website, click Cancel. To leave our website for the link you selected, click OK.  Thank you for visiting our website.");
	if(accept)
		window.open(URL)
}//end thirdPartyAlert

//toggle element by id
function toggle(elementID){
	var element = document.getElementById(elementID);
	
	if(element.style.display == 'none')
		element.style.display = 'inline';
	else
		element.style.display = 'none';
}

function ExitNotice()  {
        if(confirm("You are now leaving the First National Bank of Jacksboro's website.  To remain at our website, click Cancel. To leave our website for the link you selected, click OK.  Thank you for visiting our website.")) { return true;
} 
history.go(0);
return false;
}
