var fDesc=new Array();
fDesc[0] = "The trading platform MF Trader 4, created basing on MetaTrader4, is one of the most developed platforms. MF Trader 4 is used to transact trading operations and to make technical analysis in the real-time operation mode while working on such markets as Forex, СFD and Futures.
Requirements:
Windows 2000, XP, Vista, Windows 7";
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 = '';
}
}