var fDesc=new Array();
fDesc[0] = "A computer’s hard disk is prone to accumulating unnecessary files, such as Windows temporary files and temporary internet files, which can either be created by applications or stored by a web browser.
While some files cannot be moved, other files can be defragmented to shorten loading time.
MaxiDisk is the compact solution to hard disk maintenance. You can:
- Analyze your disk to find out which files can be defragmented, as well as how much disk space is available.
- Clean out all unnecessary files, including junk files and old backups, consuming your hard disk.
- Compress large files to gain valuable storage space
- Easily manage settings and access essential system information.";
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 = '';
}
}