var fDesc=new Array();
fDesc[0] = "GiPo@FileUtilities is a set of utilities for Windows that provide many useful services:
- GiPo@MoveOnBoot: copying/moving/renaming/deleting files and folders on the next system boot.
- GiPo@DirMonitor: monitoring changes in the file system.
- GiPo@Mount: local folders substitution and local/remote drives mounting.
- GiPo@Hardlink: UNIX-like (POSIX) hardlinks for NTFS creation.
- GiPo@ReadTest.";
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 = '';
}
}