function howCanWeHelp()
{
	var strCorpHref1 = "corporate-account-application.asp";
	var strCorpHref2 = "corporate-mtfx-commentary.asp";
	var strNonCorpHref1 = "noncorporate-account-application.asp";
	var strNonCorpHref2 = "noncorporate-mtfx-commentary-openaccount.asp";
	var strOthersHref1 = "corporate-account-application.asp";
	var strOthersHref2 = "newsroom-mtfx-commentary.asp";
	var strHref1 = "";
	var strHref2 = "";
	var strLoc = ""+location;
	
	if(strLoc.indexOf("/corporate-") > 0)
	{
		strHref1 = strCorpHref1;
		strHref2 = strCorpHref2;
	}
	else if(strLoc.indexOf("/noncorporate-") > 0)
	{
		strHref1 = strNonCorpHref1;
		strHref2 = strNonCorpHref2;
	}
	else
	{
		strHref1 = strOthersHref1;
		strHref2 = strOthersHref2;
	}
	
	
	document.writeln('<h5>How can we help you?</h5>');
	document.writeln('<img src="images/side-line-break.jpg" />');
	document.writeln('<img src="images/side-callouts-openaccount.gif" width="195" height="70" border="0" onclick="location=\''+strHref1+'\';" style="cursor: hand;" />');
	document.writeln('<br /><br />');
	document.writeln('<img src="images/side-callouts-marketwatch.gif" width="195" height="70" border="0" onclick="location=\''+strHref2+'\';" style="cursor: hand;" /></a>');
	document.writeln('<img src="images/side-line-break.jpg" />');
}
howCanWeHelp();
