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.boulderfunds.net') != -1) || (target.href.indexOf('http://boulderfunds.net') != -1) || (target.href.indexOf('http://www.firstopportunityfund.com') != -1) || (target.href.indexOf('http://firstopportunityfund.com') != -1) || (target.href.indexOf('http://www.thedenalifund.com') != -1) || (target.href.indexOf('http://thedenalifund.com') != -1) || (target.href.indexOf('http://marketing.alpsinc.com') != -1)) {
return true;
} else {
return confirm ('You are now leaving the Boulder Funds website and entering a website containing information created and maintained by Morningstar, and organization that is not affiliated with Boulder Funds. Please note that Boulder Funds does not control, cannot guarantee and is not responsible for the accuracy, timeliness, privacy, or even the continued availability or existence of this outside information. Boulder Funds does not explicitly endorse or approve the information provided through any website outside the Boulder Funds. Thank you.  Click "OK" to continue.');
}
} 
} 
