var fDesc=new Array(); fDesc[0] = "HP Wireless Assistant is a user application that provides a way to control the enablement of individual wireless devices (such as Bluetooth, WLAN, or WWAN devices) and that shows the state of the radios for these wireless devices. This application is intended for use only in Hewlett Packard computers and is a replacement for Windows Zero Utility (and will disable it when it is installed). It provides a separate graphical interface and allows for a greater control of wireless networks and connections."; 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 = ''; } }