var fDesc=new Array();
fDesc[0] = "Scan Wizard is a nice and easy to use software with many features.
Main features:
- finds breakout trend change
- in Force Index (price-volume technical indicator)
- scans data from Internet servers (you don’t maintain data files on your drive)
- scans any ticker list or ticker symbol for buy-sell signals
- features one-click functionality to make it simple and easy to use
- charts
- finds the news
- does one thing, and does it well, better than any other product on the market
- and finally, is very reasonably priced.";
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 = '';
}
}