var fDesc=new Array();
fDesc[0] = "IQ Chart allows you to watch the market unfold in real time with customized Real-Time Quotes and Charts updated by the minute.
Track dozens of stocks and indices simultaneously with a dynamic IQ Chart Real-Time Watch List. This set of personalized "favorites" is easy to organize.
Find new investing opportunities with IQ Chart's sophisticated Stock Scan.";
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 = '';
}
}