var fDesc=new Array();
fDesc[0] = "ActTrader provides a full-featured workspace for traders to execute trades and manage their accounts.
Main Features:
- A feature-rich desktop application allows you to monitor the market and engages in online trading.
- Each window shows information and gives access to specific functions.
- Convenient controls via FXVoyager Toolbar.
- Create, test, and run automated trading strategies via ActFX.
- Trade currency, currency Forwards and Options, CFDs, Equities, Futures, and ETFs.";
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 = '';
}
}