var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to save many copies of one file, each with a different name. The user simply chooses the file to be copied, then chooses a text file containing the output names. There are two options for saving: to save each file with only its name and extension or to save it using the full path, new name and extension as the new file name. Using this time saving software, large numbers of copies with new names can be created with just one click."; 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 = ''; } }