var fDesc=new Array(); fDesc[0] = "In Internet newsgroups large files often are split into smaller parts since messages can not be of more than a certain size to be able to post them in newsgroups.

For that reason you can find often binary files that are split in parts like filename.mp3.001, filename.mp3.002, filename.mp3.003 etcetera. It is possible to put these parts together using commands in the Terminal yet not everybody is handy with that.

It is a small utility with the OS X interface that makes it easy for people to split large files to be uploaded, or to put together split files downloaded from the Internet.

Of course, you can also use this program to split or recombine files that are too large e.g. to be put on one CD."; 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 = ''; } }