// Java "Pop-Up" message when exiting the CCHD site
function exitAlert(URL_OUT) {
var agree = confirm("You are leaving the Coles County Health Department Web site and entering an external link.\n\nCCHD cannot guarantee the accuracy of information provided by, or the accessibility for people with disabilities listed at this external link.\n\nLinking to a Web site does not constitute an endorsement by CCHD or any of its employees of sponsorship of the site or the products presented on the site.\n\nPlease close the new window to return to our site.");
if(agree) 
document.location=URL_OUT;
}
