var fDesc=new Array();
fDesc[0] = "FileDivide allows you to divide and merge every type of file like mp3, mpg, and so on; so you can send it by mail.
FileDivide is a java platform software that you can use also in machintosh, linux and other system and it's composed of two java executable:
- FileDivide.jar that with some dialog window ask you to select the file to split and the dimension of one splitted file.
- FileMerge.jar ask you to specify the first of splited files and the number of splitted files then it create the original merged file.";
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 = '';
}
}