var fDesc=new Array();
fDesc[0] = "The BSC LEX Downloader will download your history and download list from your SC4D LEX Account.
Main Features:
- crypted password ( so you'll have to reenter your password the first time )
- download only new&outdated files option
- optional result file parsing from cleanitol instead of using the download list of the LEX
- select/deselect all files in one click
- tooltips ballon over buttons etc.";
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 = '';
}
}