var fDesc=new Array();
fDesc[0] = "RemoveReadOnly is a small add-on for Windows Explorer that adds an item to the Explorer's contextual menu to remove the "Read-only" state of a file, group of files, or directories (recursively).
Works on Windows XP or later, both 32-bit and 64-bit versions.
In one click you can remove the read-only attribute from any file or folder.";
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 = '';
}
}