var fDesc=new Array();
fDesc[0] = "The Market Analyser is a professional market scanning and analysis program.
The Market Analyser has a robust scanning feature, which aims to help you identify trading opportunities among the global markets, a selected Watch List, or an individual stock. You will soon be able to recognize trade set-ups in a matter of seconds, using the system's industry-standard indicators, the Pre-Alerts or your own custom-designed indicators, which can be created using our Analyser Wizard.";
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 = '';
}
}