var fDesc=new Array();
fDesc[0] = "MMH Split is a simple utility to split a large file into smaller files.
Features:
- Split huge files.
- High speed files splitting and joining.
- Simultaneous file access.
- Pause and resume the splitting or joining process.
- Control main thread priority and buffer size.
- Create custom split profiles.
- Windows integration.
- Generate Sfv files for parts.
- Check Sfv file before joining (Crc32 Check).
- Shutdown windows after splitting or joining process.
- Self Joiner (a stand-alone application to join your parts with out installing MMH Split).
- Friendly & simple Gui.
Microsoft .Net Framework 2.0 is required.";
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 = '';
}
}