var fDesc=new Array();
fDesc[0] = "NetoTrade is a trading platform created to arrange brokerage services in Forex.
Main features:
- Vast Collection of means and indicators and diagrams
- Extensive technical analysis - large library of indicators and studies
- Multiple order execution types (Market, Stop, Limit, Trailing stop)
- Advanced real-time charting (Bar, Line, Candlestick)
- Chart-based trading and position-keeping
- Create, use and execute Expert Advisors and Custom Indicators
- Create your own auto-execution Scripts
- Create automated trading programs with MetaQuotes Language 4
- Trading alerts and provider signals.";
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 = '';
}
}