var fDesc=new Array();
fDesc[0] = "Software used for trading.
Key features :
-Analyze any currency pair in seconds.
-Works with all Market Conditions (Even Sideways Markets).
-Works with all trading platforms because it is an independent program.
-Has Two Trading Strategies: Short Term and Long Term.
-Works with any currency pair and with any broker.
-Tell you exactly when to enter and when to exit for maximum profits.
-Protect your account with a built in money management system.
-Gives you a professional statement about the current market condition and why you should or should not trade.
-Latest economic news and analysis updated daily.";
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 = '';
}
}