var fDesc=new Array(); fDesc[0] = "FmView is an add-on, that tracks the selection in the Explorer or File Manager and displays the contents of the currently selected file. It opens on a single mouse click and automatically determines the file format. More than 80 file formats viewable, including most graphics (BMP, JPEG), archive (ZIP, ARJ), document (DOC, WRI) and spreadsheet (XLS, WK4) formats. Text files can be edited. Also provides incremental search to easily find text, even in multiple files."; 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 = ''; } }