/*var site_arr = DomainArr;

if(!Array.indexOf){
	    Array.prototype.indexOf = function(obj){
	        for(var i=0; i<this.length; i++){
	            if(this[i]==obj){
	                return i;
	            }
	        }
	        return -1;
	    }
	}
////

document.onclick = function (evt) {
var target = document.all ? event.srcElement : evt.target;

if (target.href) {
var targ = target.host.replace(":80", "");
var targ = "http://"+targ+"/";
//return alert(targ);

if (site_arr.indexOf(targ) > -1) {
	return true;
} else {
return confirm ('You are now leaving www.alpsportfoliosolutions.com. ALPS Inc. is not responsible for the content set forth on external websites. No judgment or warranty is made with respect to the accuracy, timeliness, or suitability of the content of information on the site regarding ALPS Inc., and ALPS Inc. takes no responsibility thereof.  To return to the ALPS Inc. site, simply close the second browser window.  Thank you.  Click "OK" to continue.');	
}
}
}*/

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://marketing.alpsinc.com') != -1) ||
(target.href.indexOf('http://www.fivitfunds.com') != -1) ||
(target.href.indexOf('http://fivitfunds.com') != -1) ||
(target.href.indexOf('#') != -1) ||
(target.href.indexOf('mailto:') != -1)){
return true;
} else {
return confirm ('You are now leaving www.fivitfunds.com. ALPS Inc. is not responsible for the content set forth on external websites. No judgment or warranty is made with respect to the accuracy, timeliness, or suitability of the content of information on the site regarding ALPS Inc., and ALPS Inc. takes no responsibility thereof.  To return to the ALPS Inc. site, simply close the second browser window.  Thank you.  Click "OK" to continue.');
}
} 
}
