var fDesc=new Array();
fDesc[0] = "Path Too Long Tool is a Windows tool to copy and delete files and folders with long paths. Just browse to the file and press a button to delete it, that's it!
The application solves the problem with inability to copy and delete file and folders with long paths or locked by some application.";
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 = '';
}
}