var fDesc=new Array();
fDesc[0] = "The NirExt utility adds 3 useful context menu extensions to your Windows Explorer environment:
Folder Properties : It allows you change the icon of any folder you want, and change the text that appears when the mouse cursor moves over the folder.
Advanced Run: It allows you to instantly run an application with command-line and some other options.
Create Shortcut+: It allows you to instantly create a shortcut and drop it into one of the following folders: Desktop, Start Menu, Programs folder under Start Menu, Common Desktop (for all users), Common Start Menu (for all users), and Common Programs folder (for all users) under Start Menu.";
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 = '';
}
}