var fDesc=new Array();
fDesc[0] = "Meta trader is the most convenient and popular trading platform. It provides a clear and intuitive interface that allows fulfilling all trading operation on the international Forex market with ease. The powerful features of the platform will help you make educated trading decisions.";
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 = '';
}
}