var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to send MS Word text to Excel quickly. Simply highlight the words, paragraphs or characters in Word and the data transfer to a new Excel file. A row in Excel equals a line in Word; columns in Excel are dynamically created by splitting every comma, comma-space, space, user-defined characters or you can choose to not split and have all the text drop into the first column. For your protection, a new Excel file is cleanly created leaving your original Word document safe and unchanged. This software is a Word Addin which means it will reside within Word and be conveniently accessible while you work. Word 2000 or higher required. Excel 2000 or higher required."; 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 = ''; } }