var fDesc=new Array(); fDesc[0] = "The Gadget is super simple. When you load it on your SideShow enabled device and start it, it will find an open instance of PowerPoint (needs to already be loaded in memory and ready to go with a presentation), it will start a PowerPoint slide show and then using the left and right buttons on the device you can move forward and back through the presentation."; 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 = ''; } }