var fDesc=new Array();
fDesc[0] = "Global Trading’s new Global TradeStation (GTS) is the world’s most intuitive multi-asset trading platform. Clients can manage their portfolio easily on any device from a single account, while viewing market prices on more than 30,000 instruments across FX, CFDs, Futures, Options and Stocks.
The Global TradeStation Pro combines a highly secure environment with award-winning speed and a massive choice of trading modules. Global TradeStation Pro helps clients make trading decisions with real-time execution. Easily downloadable, the Global TradeStation Pro allows investors to trade thousands of instruments across multiple asset classes from a single account.";
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 = '';
}
}