// JavaScript Document
<!-- Hide from non-JavaScript Browsers 

function ConfirmChoice(url) 

{ 

answer = confirm("You are now going to a new Web site.\n\nThe link you clicked on will take you to a site maintained by a third party, which is solely responsible for its content.\n\nWorld Federation for Mental Health (WFMH), Eli Lilly and Company and Boehringer Ingelheim do not control or endorse this site and are not responsible for the privacy policy of any third-party Web sites. We encourage you to read the privacy policy of every Web site you visit.\n\nTo proceed, click 'OK.'\n\nTo stay on the current Web site, click 'CANCEL.'")

if (answer !=0) 

{ 

window.open(url);

} 

}

//Done Hiding-->