var fDesc=new Array();
fDesc[0] = "With Lazesoft Disk Image & Clone, you can back up your entire system or disk to image files safely on offline, or clone your entire disk to another for backup.
Main features:
- Clone an old hard disk drive to a new large one.
- Copy system partition to a new SSD drive.
- Easy to use wizard-driven interface.
- Partitions can be copy either with original sizes and locations, or Resizes transferred partitions to match new hard disk size.";
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 = '';
}
}