var fDesc=new Array();
fDesc[0] = "Free Chart Geany is a cross-platform solution for market technical analysis and charting.
Main features:
- Compatible with stocks, mutual funds, futures, indices.
- Major technical analysis indicators.
- Tab-based graphical user interface.
- Easy download of quotes from Yahoo Finance or Google Finance.";
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 = '';
}
}