var fDesc=new Array();
fDesc[0] = "TQM is a software utility designed to work with Metastock or TradeStation applications.
First of all, TQM provides a complete set of settings such as : Telequote Connection Settings, Activate WinRos Control Settings and Program Settings.
You have to know your Subscriber ID, server address and also a proxy server.
Also, TQM utility announce you about the latest alert messages in real time, such as : Activate WinRos Control is started, Warning : Connection lost, Connected to Proxy Server and more.";
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 = '';
}
}