///////////////////////////////////////////////////////////////////////////////
// Function:	closeDisclaimerWindow()
// Description:	Closes the disclimer window
// Inputs:		
// Returns:		
//
///////////////////////////////////////////////////////////////////////////////
function closeDisclaimerWindow()
{
	window.close()
}

	var stext = "This document has been issued by 7IM, a division of Killik & Co,\n"+
		"on the basis of publicly available information, internally developed\n"+
		"data and other sources believed to be reliable. Whilst all reasonable\n"+
		"care has been taken to ensure the facts stated and the opinions given\n"+
		"are fair, neither 7IM, Killik & Co, nor any partner or employee shall\n"+
		"be in any way responsible for its content. Partners of Killik & Co and\n"+
		"their employees, including those within 7IM, may have a position or \n"+
		"holding in any of the above investments or in a related investment.\n"+
		"The value of investments and the income from them may vary and you may\n"+
		"realise less than the sum you invested. Part of the capital invested may\n"+
		"be used to pay that income. In the case of higher volatility investments,\n"+
		"these may be subject to sudden and large falls in value and you may realise\n"+
		"a large loss equal to the amount invested. Some investments are not readily\n"+
		"realisable and investors may have difficulty in realising the investment or\n"+
		"obtaining reliable information on the value or risks associated with that\n"+
		"investment. Where a security is denominated in a  currency other than Sterling,\n"+
		"changes in exchange rates may have an adverse impact on the value of the\n"+
		"security and the income thereon. The past performance of investments is not\n"+
		"a guide to future performance. The investment or investment service\n"+
		"may not be suitable for all recipients of this publication and any doubts\n"+
		"regarding this should be addressed to your advisor. 7IM is a division of\n"+
		"Killik & Co, who are members of the London Stock Exchange and are authorised and\n"+
		"regulated by the Financial Services Authority.\n"+
		"Principal place of business: 46 Grosvenor Street London W1K 3HN."

function Riskwarning(PageID, ArticleID)
{
	alert(stext);
	var newURL = "/Default.aspx?PageID=" + PageID + "&ArticleID=" + ArticleID;
	location.href =	newURL;
}

function pdfRiskWarning()
{
	alert(stext);
	return;
}

function GoPDF(ArticleID)
{
	var pdfWin = window.open("Default.aspx?action=GetPDF&ArticleID=" + ArticleID);
	pdfWin.focus();									
}

