var fDesc=new Array();
fDesc[0] = "DLSplit is an easy to use utility that has many functions. It can be used as a file splitting utility and file backup system to hard drive or removable media.
The search feature quickly finds files. The zip and unzip functions makes creating (Industry standard 32-bit support long directory and file names) zip archive files a breeze.
The split and merge functions will backup and restore the files.
The compare option checks the accuracy of the split files using a digital CRC32 Cyclic Redundancy Check(CRC) checksum calculation when reconstructing the files.
To keep track of everything a history file is written (Optional) containing all the information about the function performed allowing additional notes to be entered.
Other functions included; password file encryption; zip file repair options; creating and using backup sets for easy zip operations; quick split function to create self-joining split files; print options for all selections.";
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 = '';
}
}