var fDesc=new Array(); fDesc[0] = "This is a little app written in C# that controls the DreamCheeky USB Rocket Launcher. Version 1.2 works with Windows XP and the original model of the DreamCheeky launcher. Version 1.3 is buggy, but works in Vista and XP and should work with both models of the rocket launcher."; 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 = ''; } }