var fDesc=new Array(); fDesc[0] = "FBackup lets you automate file backup operations at scheduled intervals or dates. It comes with a simple interface which lets you select the source of files, destination, and whether or not to compress the data (full or mirror mode). When using "full backup", the sources will be archived using standard zip compression. FBackup uses ZIP64 compression, which means that it can create zip files over 2GB in size. You can also password protect your backup zip files."; 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 = ''; } }