// for ag_links.htm, hotlinks.htm, index.shtml, pb_apply.htm, weather.htm
function leaveSite(url) {
	if (confirm("You are leaving Mound City Bank website and linking to a non-affiliated third party site. Please be advised that you will then link to " +
				"a website hosted by another party, where you will no longer be subject to, or under the protection of, the privacy and security policies " +
				"of Mound City Bank. We recommend that you review and evaluate the privacy and security policies of the site that you are entering. " +
				"Mound City Bank assumes no liability for the content, information, security, policies or transactions provided by these other sites. ")) {
		window.open(url);
	}
}

// Popup for search function on home page index.html
function leaveSite_search() {
	if (confirm("You are leaving Mound City Bank website and linking to a non-affiliated third party site. Please be advised that you will then link to " +
				"a website hosted by another party, where you will no longer be subject to, or under the protection of, the privacy and security policies " +
				"of Mound City Bank. We recommend that you review and evaluate the privacy and security policies of the site that you are entering. " +
				"Mound City Bank assumes no liability for the content, information, security, policies or transactions provided by these other sites. ")) {
		switch(ch) {
			case "y":
				window.open("http://search.yahoo.com/bin/search?p="+g);
				break;
			case "g":
				window.open("http://www.google.com/search?hl=en&q="+g);
				break;
			case "b":
				window.open("http://www.bing.com/search?hl=en&q="+g);
				break;
		}
	}
}
