var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to convert one or more CSV (comma separated values) files into text files. The user chooses the files or an entire folder to be processed and then specifies either the replacement of only the commas or the comma and following space with 'y' which is then selected from the drop down list. Options for 'y' are: space, enter, tab or user specified. The replace frequency is set at 1 to replace all commas, 2 to replace every second or 3 to replace every third comma."; 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 = ''; } }