var fDesc=new Array(); fDesc[0] = "Presentation Features
- Songs, texts, images and videos
- Flexible template system to define how the items are formatted
- Video background (both video file and live from camera)
- Quick display of alerts (useful for nursery or parking announcements, for instance)
- Supports any display resolution (including widescreen)
- Launch any external file, such as presentations made in other applications (PowerPoint, OpenOffice, Adobe Flash, etc)
- Use a different output for the pastor or musicians, including additional information such as the next slide or a clock"; 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 = ''; } }