var fDesc=new Array();
fDesc[0] = "TQJava is an application developed for private investors and traders who seek basic features without compromising on the quality and speed. It has a flexible quote board with one click chart view. You can quickly modify the watch list as well and the built-in Java engine provides easy access to most of the features and buttons.
Main Features:
-Real time Streaming Quotes
-Futures Full Pages
-Real time charts with basic studies
-Streaming Quote and Charts combo screen";
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 = '';
}
}