var fDesc=new Array();
fDesc[0] = "This software mixes and plays music and messages to your callers while they are on-hold or being transferred. One of the main advantages of using a computer is automation (eg. date sensitive messages) and easy user control over messages.
- Give your business a bigger more professional sound
- Flexible scheduling perfect for marketing campaigns and holiday reminders
- High capacity stores over 5 hours of high quality audio
- Includes free music and professionally voiced announcements
On hold software gives you complete control over your messages and access to state-of-the-art features that have never been available in on hold messaging before. If a studio produces your messages for you, they can update the presentation messages over the Internet.";
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 = '';
}
}