var fDesc=new Array();
fDesc[0] = "Your most valuable resource is time. In the world of trading and investment, your time is money.
Stator-AFM Professional software reduces the amount of time you spend managing and analysing your trading activities.
Stator-AFM Professional techniques make it the fastest and easy way to manage a portfolio to gain more vision and intuition.
Main features:
- Foreign Exchange & multiple-currency support
- Index related instruments
- Most advanced portfolio management available";
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 = '';
}
}