var fDesc=new Array();
fDesc[0] = "iDownloader - FX is a forex data download program for windows.
Features:
-iDownloader is a freeware offered to public
-It is designed to help users download end-of-day forex data
-These data are made available and freely accessible to public from websites in the internet
-Data would be automatically converted, rearranged and stored as individual price data file in ASCII format for the use of charting software, e.g. Time Trader Charting Software.
-iDownloader - forex also calculates pivotal support and resistance levels and fibonacci levels based on the daily high / low closes of the day.";
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 = '';
}
}