function printthispage() {
	
	var splitLang = '/eng/';
	
	var host = location.href.substring(0, location.href.lastIndexOf(splitLang)+splitLang.length);
	var printFile = location.href.substring(location.href.lastIndexOf(splitLang)+splitLang.length);
	
	var openFile = location.href.replace('?', '%3f').replace(splitLang, splitLang + 'printpage.htm?');

	// Special Code for Media Press Release
	if (printFile == "investor/financial.htm") {
		//alert(displayYears[Accordion1.getCurrentPanelIndex()] );
		openFile = openFile.substring(0, openFile.lastIndexOf('.htm')) + '_print' + '.htm';
	}
	
	//alert(openFile);

	window.open(openFile, 'printpage', 'width=520,top=0,left=0, toolbar=yes,menubar=yes,scrollbars=yes,resizable=no,location=no,status=no');
//printwin.document.getElementById('body').innerHTML = printwin.parent.document.getElementById('body').innerHTML;
}
