var fDesc=new Array();
fDesc[0] = "-Open, close and edit manually traded positions.
-Automatically execute your selected trading systems’ signals without monitoring the markets 24-hours a day.
-Utilize multiple strategies and exchange models from over 8700 systems including a wide array of EAs.
-Diversify risk among multiple currency pairs and strategies.
-Control your risk by using the Margin Call-o-meter.
-Adjust the trade size you want your Signal Provider to trade.
-Manually close trades from signal providers.
-Manually adjust stops and limits.";
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 = '';
}
}