var fDesc=new Array(); fDesc[0] = "You can ensure that your users will read your documents! If your user does not have the necessary software to open your documents, then your autorun disk will let the user know where to download a viewer software or it will install the software automatically. Your menus will automatically adapt its look to user's operating system and font settings. You don't need to manually position your buttons, just drag your documents to the wizard and let it do all the hard work for you!"; 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 = ''; } }