var fDesc=new Array();
fDesc[0] = "Red1FX has several new features and functions that make the dealing with it easier and more flexible, we have taken our customer suggestions and notes in our consideration; the conclusion of that is new version which has the following features:
1- Change List View Settings:
- Show/Hide Columns:
You can show or hide any desired column in the list view.
- Show/Hide Grid Lines:
You can show or hide the grid lines from list view.
- Edit the Font settings and Color:
To set the desired font type and color in list view.
2- New Show/Hide Symbols Window:
you can show/hide symbols in groups from this window. Also, click on properties button to see each symbol properties.
3- Hide/Show Market Watch Columns:
Hide and show the desired columns on market watch.
4- Esc to cancel indicators:
Now, if you started to add indicators to chart ithen you canceled that by pressing on Esc, then the indicator panel on the chart will disappear.
5- Drag/Drop Symbol To Draw Chart:
Now, drag any symbol and drop it on the chart grid to draw its chart.";
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 = '';
}
}