var fDesc=new Array();
fDesc[0] = "CROA is a handy utility that will clear the read-only bit of all subfolders and files in a specific folder. This is extremely useful after copying the contents of a CD to your hard drive.
CROA will change the attributes of folders, when started without command-line options, allows selecting of the starting folder.
Main features:
- Install/Uninstall support
- Easily accessed from Window’s own context menu
- Recurses subfolders
- Completely free";
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 = '';
}
}