var fDesc=new Array();
fDesc[0] = "Offshore Trader offers access to the global capital markets, bringing a world of investment opportunities directly to your desktop. Trade Forex, Stocks, CFDs and Futures – all from one platform.
Offshore Trader offers:
-Competitive prices and spreads
-Real-time market news and data
-Comprehensive market research and analysis
-A fully-integrated trading interface
-Advanced charting and technical analysis
-Built-in risk and account management tools";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}