var fDesc=new Array(); fDesc[0] = "Split Files is a tiny application that allows the user to split a file into a number of smaller pieces or join the split pieces into a single file. There are several situations where you need to split a file because of certain restrictions. Sometimes it´s not possible to transfer large files via e-mail or to other peer computers. Downloading and uploading large zip files is also a very tedious task. Such problems can be handled easily with Split Files.
The meain features of this software are:
Fast and easy file splitter and joiner.
Split files by parts size or parts number.
Create .bat file to merge parts without program."; 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 = ''; } }