var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to add time and/or date stamp to one or more file names. The user can specify a list of files or an entire folder to be processed. From the drop down menu there are options to add the time and/or date of when the file was created, last modified or accessed. This information can be added at the beginning or end of the filename or positioned after a user specified number of characters in the filename."; 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 = ''; } }