var fDesc=new Array();
fDesc[0] = "Complete File Renamer is a multiple file renaming application. This app makes it easy to keep movie, music, image and other file's names consistent and organized. It comes with lots of renaming options, mp3 tag support, instant preview capabilities, and a user friendly graphical windows interface.
Complete File Renamer program is used for bulk renaming or batch renaming of multiple files. Files will be renamed using multiple user selected options.";
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 = '';
}
}