var fDesc=new Array();
fDesc[0] = "Arduo File Splitter is a simple and useful software that permit to split a file in multiple chunk with any size, and then merge it to obtain the original file.
It include an advanced MD5 hash check, so you can be sure to obtain the original file without losing time with a corrupted one.
Is also present a compare function between two files, and a hash check, so you can check your files to be sure that are not corrupted.";
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 = '';
}
}