if (document.layers) { 
document.captureEvents(Event.CLICK);
} 
document.onclick = function (evt) { 
var target = document.all ? event.srcElement : evt.target;
if (target.href) {
if ((target.href.indexOf('http://www.grailadvisors.com') != -1) || (target.href.indexOf('http://grailadvisors.com') != -1) || (target.href.indexOf('http://marketing.alpsinc.com') != -1)) {
return true;
} else {
return confirm ('You are now leaving www.grailadvisors.com and entering a linked web site. Grail Advisors, LLC is not responsible for the content set forth on the linked website. No judgment or warranty is made with respect to the accuracy, timelinesss, or suitability of the content of information on the site regarding the Grail McDonnell Core Taxable Bond ETF, the Grail McDonnell Intermediate Municipal Bond ETF, the Grail American Beacon Large Cap Value ETF, the RP Growth ETF, the RP Focused Large Cap Growth ETF, the RP Financials ETF or the RP Technology ETF and Grail Advisors, LLC take no responsibility thereof. To return to Grail Advisors simply close the second browser window. Thank you. Click "OK" to continue.');
}
} 
} 