//thirdPartyAlert
function thirdPartyAlert(URL)
{
	var accept = confirm("Commerce Bank of Arizona is not endorsing or guaranteeing the products, information, or recommendations provided by linked sites and we are not liable for any failure of products and services advertised on those sites ");
	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';
}