function showArticleArea() {

	page_title = document.title;
	page_logo_main = document.getElementById("logo_main");
	page_article_area = document.getElementById('article_area');
	page_footer = document.getElementById('footer');

	//	create the document
	win2=window.open();
	win2.document.open();
	win2.document.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n");
	win2.document.write("<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n");
	win2.document.write("  <head>\n");

	win2.document.write("    <title>" + page_title + "</title>\n");
	win2.document.write("    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>\n");
	win2.document.write("    <meta http-equiv=\"pragma\" content=\"no-cache\" />\n");
	win2.document.write("    <meta http-equiv=\"imagetoolbar\" content=\"no\" />\n");
	win2.document.write("    <meta name=\"MSSmartTagsPreventParsing\" content=\"true\" />\n");
	win2.document.write("    <meta name=\"distribution\" content=\"GLOBAL\" />\n");
	win2.document.write("    <meta name=\"Language\" content=\"en\" />\n");
	win2.document.write("    <meta name=\"No-Cache\" content=\"True\" />\n");
	win2.document.write("    <meta name=\"reply-to\" content=\"info\" />\n");
	win2.document.write("    <meta name=\"copyright\" content=\"2007 Roberts Clarke - Independant Financial Services Ltd.\" />\n");
	win2.document.write("    <meta name=\"author\" content=\"Slightly Different Ltd. [http://www.slightlydifferent.co.uk/]\" />\n");
	win2.document.write("    <meta name=\"description\" content=\"5,000 pages online: Members Need An Adviser.com Only Users Area. Online Financial Adviser of the Year again plus many more awards. If we cannot help you, no financial adviser can!\"/>\n");
	win2.document.write("    <meta name=\"keywords\" content=\"member, membership, login, needanadviser, need an adviser, best, advice, online, online financial advice, online financial adviser, online financial advisor, financial advice, independent financial advice, uk, international, winner, awards, financial adviser, financial advisor, independent, independent financial adviser, independent financial advisor, pensions, savings, investment, insurance, life, wills, assurance, discount, ifa, adviser, financial, finance, money, independent, consultant, tax, shares, divorce, advisor,\"/>\n");
	win2.document.write("    <style type=\"text/css\" media=\"print\">\n");
	win2.document.write("    /*<![CDATA[*/\n");
	win2.document.write("    @import \"/css/print.css\";\n");
	win2.document.write("    /*]]>*/\n");
	win2.document.write("    </style>\n");
	win2.document.write("    <style type=\"text/css\" media=\"screen\">\n");
	win2.document.write("    /*<![CDATA[*/\n");
	win2.document.write("    @import \"/css/generic_screen.css\";\n");
	win2.document.write("    @import \"/css/1col_screen.css\";\n");
	win2.document.write("    /*]]>*/\n");
	win2.document.write("    </style>\n");

	win2.document.write("  </head>\n");
	win2.document.write("  <body>\n");
	win2.document.write("    <div id=\"header\">" + page_logo_main.innerHTML + "</div>\n");
	win2.document.write("    <div class=\"clearing\">&nbsp;</div>\n");
	win2.document.write("    <div id=\"wrapper_int\">\n");
	win2.document.write("      <div id=\"container\">\n");
	win2.document.write("        <div id=\"content\">\n");
	win2.document.write("          <div id=\"article_area\">" + page_article_area.innerHTML + "</div>\n");
	win2.document.write("        </div>\n");
	win2.document.write("      </div>\n");
	win2.document.write("    </div>\n");
	win2.document.write("    <div id=\"footer\">" + page_footer.innerHTML + "</div>\n");
	win2.document.write("  </body>\n");
	win2.document.write("</html>\n");
	win2.document.close();

	win2.document.URL = "";

}

