var fDesc=new Array();
fDesc[0] = "NetTradeX Advisors is an easy- to-use, free trading terminal.
Main features:
- Trade automation and analysis by creating trading robots (Expert Advisors), custom indicators and service utilities.
- Graphical interface (visual trade) of opening positions, set and modification of orders directly on the chart of the financial instrument by the mouse.
Opportunities for Windows users:
- Trading in all major financial markets.
- Balance and lock trading.
- Opening positions of any volume.
- Instant execution of deals.
- Trailing Stop on server side.
- Built-in language NTL+ for automated trading.
- Personal Composite Instruments (GeWorko method).";
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 = '';
}
}