var fDesc=new Array();
fDesc[0] = "Path Scanner is a powerful and fast file scanner, which will help you identify long file path on your computer or server.
Path Scanner is a powerful and fast file scanner (command line application), which will help you identify long file path on your computer or server. The results are saved into a plain text file in CSV format and XML, which can be easily opened in any XML/CSV/spreadsheet editor or viewer. The program also supports UNC file paths.";
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 = '';
}
}