function disclaimer() {
	if(readCookie('GLAN') == null) {
		alert('IMPORTANT INFORMATION\n\n\
This is not an offer or solicitation for investment management services, investment advisory services, securities or any other product or service in any jurisdiction where we are not authorised to do business or where such an offer or solicitation is contrary to securities laws or other local laws and/or regulations pertaining to that jurisdiction or where it is otherwise unlawful to make such an offer or solicitation.  Investment in the [GLANMORE PROPERTY FUND] is restricted to certain categories of investor or via an intermediary (“eligible investors”).\n\n\
The information contained in this website is subject to the terms of the [GLANMORE PROPERTY FUND] prospectus, to which the attention of eligible investors is drawn.  Applications for shares may be made only on the basis of the [GLANMORE PROPERTY FUND] Prospectus and will be accepted only from eligible investors.\n\n\
Investment in real estate investments are generally of a higher risk profile than other investments available for investors.  Investors must be able to bear the risks involved and must meet the Fund’s suitability requirements.  The Fund will utilize substantial leverage and may utilise hedging strategies.\n\n\
This fund invests in commercial property in the United Kingdom and investors without expertise or experience in this asset class should consider carefully with their financial advisor the suitability of this investment for their needs and read and fully understand the prospectus for full details of the proposed investment and its risk factors.  Past performance is not a guide to future performance.\n\n\
This website does not constitute investment advice or a recommendation.  Any reproduction or distribution of the information in this website or use of any information herein for any purpose other than considering an investment is prohibited.  Although the information herein has been obtained from sources believed to be reliable, we do not guarantee its accuracy completeness or fairness.  This product is not insured and is not an obligation of nor guaranteed by any member of the Deutsche Bank Group.\n\n\
The Fund is managed by Tilney Asset Management International Limited (“TAMIL”), which is regulated by the Guernsey Financial Services Commission.  TAMIL is an associate of Tilney Investment Management, which is regulated by the Financial Services Authority for the conduct of UK business.  The Tilney Group was acquired by Deutsche Bank in December 2006.  Tilney Private Wealth Management is part of Deutsche Bank Private Wealth Management which covers Deutsche Bank’s wealth management activities for high-net-worth clients around the world.\n\n\
I HAVE READ AND AGREE TO THE TERMS AND CONDITIONS ABOVE');
		createCookie('GLAN','OK',0);
	}
}

function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}

function eraseCookie(name) {
	createCookie(name,"",-1);
}
