var fDesc=new Array();
fDesc[0] = "proTrack is an advanced market data application designed to be a complete solution for institutional traders. The trading tools within proTrack are designed to function efficiently on even the most volatile trading days.
This feature-rich application offers:
- Advanced, real-time market data content and features
- The option of a direct, unbiased trade execution platform (if desired)
- A fully customizable work station
- Advanced AIQ charting capabilities";
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 = '';
}
}