var fDesc=new Array();
fDesc[0] = "VantageFX Trader allows you to manage all your trading operations.
There are a variety of benefits for MetaTrader 5 brokers and traders using this tool, including increased productivity by faster trade execution, leading to an enhanced all round experience.
Think of it as the perfectly equipped working tool – one which allows a trader to manage and effectively watch over whichever trading system has been created. The software contains all the functions that a trader could need to compete in the market, while receiving support for all types of orders and trade operation executions, whether instant, request, market or exchange.";
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 = '';
}
}