function checkLinks() {
	var anchors = document.getElementsByTagName('a');
	
	for (var i=0; i<anchors.length; i++){
		var anchor = anchors[i];
                var href = anchor.href;
                var strmatch = href.search(/cumberlandbank/)
			
		if (strmatch == -1) {
			anchor.onclick = alert;
		}
	}

}
function alert() {
	var answer = confirm('Cumberland Bank & Trust does not control the content of or approve any website that is linked through this brower.  Search results are not filtered or screened by the bank or any of its agents, representatives or service providers. Users who search the internet using this browser do so at their own risk and are responsible for the results.');
	if(answer) {
		return true;
	}
	else {
		return false;
	}
}
