var fDesc=new Array();
fDesc[0] = "TouchPro allows you to change any combination of file time attributes through a file's property pages. TouchPro fully integrates into Windows Explorer and gives you the ability to touch selected files and entire folder hierarchies in a single easy operation.
The registered version of TouchPro enables extra facilities:
Separate time & date modification.
Touch files, folders, or both.
Touch read-only files and folders.
Save current settings.
Select 24 hour time, and long or short date format.";
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 = '';
}
}