var fDesc=new Array(); fDesc[0] = "Window Hide Tool will help you to quickly hide a window of any application. You can set hotkeys for basic program commands: hide a window; hide all windows; hide a group of windows. Or you can hide a window by clicking an icon in your tray. Moreover, you can specify groups of windows by their title text and set hotkeys for them. (For example, a group can comprise all windows that have 'Internet Explorer' in their title text.)"; 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 = ''; } }