var fDesc=new Array();
fDesc[0] = "LiteStock is a stock ticker for your Windows desktop. A new and useful software for your computers that you cane get it for a decent price.
Features:
-Use the traditional scrolling ticker view to see your stock performance at a glance at any time
-See a snapshot of your entire portfolio at once with the all-new portfolio view
-Easily customize the appearance and information displayed by the ticker and the portfolio view
-Support for 9 different exchanges and two quote sources (Yahoo! Finance and MSN Money)
-Small, fast, and easy to use, with a low memory footprint and a compact downloadDesigned for reliability; hundreds of automated tests are run every time a change is made to the software.";
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 = '';
}
}