var fDesc=new Array(); fDesc[0] = "FileBox enhances Windows by adding several advanced functions to the standard Open File and Save File dialog boxes. FileBox adds two handy buttons to these standard dialogs. These appear on the right side of the Windows dialog box title bars. These buttons appear next to the minimize, restore, and maximize buttons with which you're probably already familiar."; 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 = ''; } }