var fDesc=new Array();
fDesc[0] = "Main features:
-Programs every function and all possible setups
-Captures MIDI and creates and edits shows
-Up/downloads shows and audio selections
-Organizes multiple projects on multiple SoundMan-Server & AudioBox II computers
-Updates and archives all project files on multiple host -SoundMan-Server & AudioBox II computers
-Real time control of all audio and show functions
-Live display and monitoring of all audio and show functions and SoundMan & AudioBox II status";
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 = '';
}
}