function confExit(site) {  msg="You are leaving the RiverHills Bank website.  RiverHills Bank does not endorse or guaranty the information, practices, or products available on " + site +".\nDo you want to proceed?";  return(window.confirm(msg)) }function exitSite(url) {  var urlpat=/(\w+):\/\/([\w.]+)/;  var text=url;  var result=text.match(urlpat);  site=result[2];  msg="You are leaving the RiverHills Bank website.\nRiverHills Bank does not endorse or guaranty the\ninformation, practices, or products available on\n" + site +"\nDo you want to proceed?";  if (window.confirm(msg))   {    open(url, "", "location,menubar,resizable,scrollbars,status,toolbar");  }}