var fDesc=new Array();
fDesc[0] = "MT4 API is designed to control Metaquotes MetaTrader 4 terminal from another applications with using DotNET.
Main features:
- It's possible to control one MT4 terminal from several .NET applications.
- MT4 API allows to control MT4 terminal remotely via TCP/IP.
- It's possible to control several MT4 terminals simultaneously from one application.";
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 = '';
}
}