var fDesc=new Array();
fDesc[0] = "GridinSoft Backup is a small and powerful tool that protects your data from irreparable loss or damage. Integrated ZIP compression, support backup storage FTP and network, backup of several folders at a time, can be used as independently, and with any scheduler tasks. You may backup your files at any convenient time.
Features:
- Support for different types of backup storage including FTP, and LANS;
- Integrated ZIP compression;
- Support any schedulers;
- Backup of several folders at a time;
- Activity log in for each backup script;
- Opportunity to run backup manualy;
- Flexible file selection and file masks handling;
- Multilingual interface;
- Windows XP compatible user interface.";
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 = '';
}
}