var fDesc=new Array();
fDesc[0] = "Through their brokerage partnerships with some of the best brokers in the business, eSignal and TransAct Futures provide traders with one of the most flexible, real-time investing experiences available.
Integrating eSignal's leading charting software with TransAct's leading datafeed and execution services empowers traders to monitor and evaluate specific markets and place and execute – from a single, integrated platform – a variety of orders varying in sophistication and strategy.";
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 = '';
}
}