var fDesc=new Array();
fDesc[0] = "MetaTrader 4 is a powerful and flexible way to manage Forex trades and strategies.
Aston FX Solutions and MetaTrader 4 provide individual traders the liquidity, consistency and execution stability desired in a fast-paced trading environment of Forex.
AstonForex offers two types of Forex Options. Forex Options are available for more than 40 currency crosses including Gold and Silver against the US dollar.";
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 = '';
}
}