var fDesc=new Array();
fDesc[0] = "Alax.Info NTFS Links extends Microsoft Windows XP operating system shell by adding additional features related to soft and hard links supported by NTFS file system.
Shell extensions include:
- Added new item to directory context menus to accept dropped directories as soft links.
- Added new item to directory context menus to paste copied to clipboard directories as soft links.
- Added new item to directory context menus to accept dropped files as hard links.
- Added new item to directory context menus to paste copied to clipboard files as hard links.
- Added new directory column to display soft linked directory?s link target directory.
- Added new directory column to display file?s number of hard links.
- Added new info tip item to soft linked directories to display link target.
- Added new info tip item to display file?s number of hard links.
- Added icon overlay to display soft linked directories with a shortcut image.";
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 = '';
}
}