// JavaScript Document
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.greenhavenfunds.com') != -1) || (target.href.indexOf('http://greenhavenfunds.com') != -1)){
return true;
} else {
return confirm ('You are now leaving www.greenhavenfunds.com  The GreenHaven Continuous Commodity Index Fund 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 the GreenHaven Continuous Commodity Index Fund, and the GreenHaven Continuous Commodity Index Fund takes no responsibility thereof.  To return to the GreenHaven Continuous Commodity Index Fund, simply close the second browser window.  Thank you.  Click "OK" to continue.');
}
} 
} 