
function checkExit(url) {       
	if (confirm ("You are leaving Farmers & Merchants Bank's Web Site and entering a third party web site.  Farmers & Merchants Bank is not responsible for the content on this site.  If you wish to continue, click the button below.")) {
		top.location = url;
	} else {
		// do something else - like nothing
	}

}