var fDesc=new Array();
fDesc[0] = "The StockTickr Automated Trading Robot is software designed to automatically trade the strategies of your choosing through Interactive Brokers.
Features:
-Absolutely the easiest way to start automated trading - no coding required!
-Fully automated trading with IB's low commission rates
-Full control over what gets traded through the robot.
-Automatically execute one or many trading strategies.
-Protective stops and other exit orders are server-held, so always protected.
-Include a variety of exit orders including stop loss, time stops, trailing stops, and targets.
-Automatically scale out of positions at the amount and price you configure.";
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 = '';
}
}