var fDesc=new Array();
fDesc[0] = "FileSplit is an award winning utility to split large files into small, manageable files that can be more easily copied to diskettes and transferred by email.
Main Features:
- Fast, small, and easy to use.
- File splitting and merging from the Explorer shortcut menu.
- Preserves all file information including file time, date, and attributes.
- Calculates CRC signature to detect file corruption.
- Multiple files can be split at one time.
- Ability to create ZIP files, which can be extracted with the Self-Merger.
- XP Compatibility
- New sizes added for CD and DVD discs
- Various minor bugs fixed
- Ability to create ZIP files, which can be extracted with the Self-Merger.
- Self-Merging/Extracting 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 = '';
}
}