var fDesc=new Array();
fDesc[0] = "This was developed to be a remake of the Envox Studio application.
The Envox Studio is a cool application because it is highly scriptable... or should I say: easily scriptable. What give Envox a slight competitive advantage over other IVR vendors are its cool 4GL scripting environment.
Each phone line can be scripted. A script is a sequence of actions that is executed for each line. A typical script example could be: Wait for a phone call, look up phone number in database, present voice menu if caller is known, if caller presses 1 on the phone then send an e-mail to support account, hang up and go back to waiting for new call.";
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 = '';
}
}