var fDesc=new Array(); fDesc[0] = "Lucid will add automatic transparency effects to any window. Adding a window is as simple as dragging an icon over it. Once a window is added to Lucid's list it will automatically switch between the user defined minimum and maxium transparency. Lucid uses the window's class name for identification, so it is easy to add all windows from an application by dragging the mouse over any of its windows. Lucid can be enabled and disabled quickly using its system tray interface."; 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 = ''; } }