var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to delete columns from one or more text, Excel or CSV files. The user adds the file/s or an entire folder for processing. There is a drop down menu to choose to delete: between x and y columns, the last of a user specified number of columns (e.g. the first, second, third, etc.) or every column after the first space, comma, comma and space combination, tab or user specified character/s. This menu includes options to do the above for the second or third instance of the same options or to delete everything before or after a user specified number of occurrences of a specified character."; 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 = ''; } }