var fDesc=new Array();
fDesc[0] = "MT4BAR is an app designed to speed up all your Metatrader related duties.
Main features:
- Compatible with MetaTrader4 All Builds.
- Compatible with all Windows versions from WinXP and up.
- Automatic Terminal Detection.
- Drag & Drop Installation of MQL related files.
- Drag & Drop Installation of MQL related files inside .zip files.
- All functions from our mt4ticker included.
- 10 Themes.
- Detect & Open most important Directories.
- Global Shortcut WIN F11 to open terminal anywhere anytime.
- All settings will be saved automatically.";
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 = '';
}
}