var fDesc=new Array(); fDesc[0] = "The Roxen Application Launcher uses the Windows registry to determine how many files of a certain type should be opened. The program will automatically open files with the system default editor for each file type, for unknown filetypes it will ask the user to provide one, using the standard dialogs for this purpose. If you wish to use another editor for a file, you can right click it in the list and choose Open with."; 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 = ''; } }