var fDesc=new Array();
fDesc[0] = "Create new folders anywhere on your PC with a simple right click. New Folder Here will add the command 'New Folder Here' to the menu that pops up when you right-click on a File, Folder, Drive, Start button, Programs menu or Favorites menu. Windows does have the command 'New/Folder' although very limited on where you can create a folt usually takes a while for the 'New' menu to expand. Create them anywhere instantly with this little utility.
Examples when right clicking and creating a New Folder on:
My Documents Folder: Creates 'New Folder' inside My Documents
My Documents\MyFile.txt: Creates 'New Folder' in My Documents
Drive C:\: Creates 'New Folder' under C:\
Start Button: Creates 'New Folder' at the top of the Start Menu
Programs Menu: Creates 'New Folder' inside the Folder you clicked on. (Except NT/2K/XP)
Favorites menu: Creates 'New Folder' inside the Folder you clicked on";
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 = '';
}
}