var fDesc=new Array();
fDesc[0] = "EZ Backup Firefox Basic makes it easy to backup your Firefox bookmarks and settings to any local, network or removable drive. The application creates a self-restoring backup archive which includes a wizard interface that will guide you through restoring your data.
Features:
· Backup to Local, Network or Removable Drives
· Easy to use Wizard Interface
· Minimize to System Tray
Minimize EZ Backup to the system tray during your backup and you will be notified when the backup has completed.
· Creates Self-Restoring Backup Archive
· Supports Unicode 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 = '';
}
}