﻿var fDSp=(typeof(document.getElementById)!='undefined');
if (typeof(PageHost) == 'undefined') var PageHost = '';

function AddForexHeader(Name, Header, Buttons, Symbol, AddChildTable)
{
	document.writeln('<div class="box-content"><table border="0" cellpadding="2" cellspacing="2" width="80%" height="100%"><tr><td>');
	
	if (typeof(AddChildTable)=='undefined')
	{
		document.writeln('<table align=right width="100%" cellspacing=0 cellpadding=2 border=0 >');
		
		LastChild = 1;
	}
	else
	{
		LastChild = 0;
	}
	return true;
}

function AddForexFooter()
{
	document.writeln('				</table>');
	document.writeln('			</td></tr>');
	document.writeln('		</table>');
	document.writeln('	</div>');
}

function Trim(iStr)
{
	while (iStr.charCodeAt(0) <= 32)
	{
		iStr=iStr.substr(1);
	}

	while (iStr.charCodeAt(iStr.length - 1) <= 32)
	{
		iStr=iStr.substr(0, iStr.length - 1);
	}

	return iStr;
}

