var fDesc=new Array();
fDesc[0] = "The INSTANT Song Presenter is a computer program (for Windows 3.1 and 95/98) that provides INSTANT access to displaying any song in its "Song Database" in a presentation format suitable for use with a video projector or large size TV. It also provides the added advantage of having INSTANT access to any verse or chorus within a song interactively.
The program is designed for three types of presenters:
- The novice presenter who wants to display lyrics but doesn't have the time to learn a complex Presentations Program.
- The experienced presenter who needs more control over how the lyrics are presented in a meeting.
- The presenter who would benefit from the ZERO preparation time needed to present lyrics (that's just about anyone).";
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 = '';
}
}