function disclaimerConfirmed() {
	var objCheckBox = document.getElementById('cbAgree');
	if (!objCheckBox) return;
	if (!objCheckBox.checked) {
		alert('This page is intended for use by professional investors only. Information contained in here is not suitable for and should not brelied upon by private investors.\n\nPlease confirm that you are a professional investor by checking the box below.');
		return false;
	}
	var aObj = document.getElementById('disclaimer');
	if (aObj != null) aObj.style.display = 'none';
	var aObj = document.getElementById('imgDisclaimerTitle');
	if (aObj != null) aObj.style.visibility = 'hidden';
	var aObj = document.getElementById('performanceCharts');
	if (aObj != null) aObj.style.display = 'block';
}
