var fDesc=new Array();
fDesc[0] = "ISDN-based voicemail and information software for 2 to 60 channels with touch-tone controlled menus. The user can create own information menus quite easily.
CapiCall also allows voice to mail (creating e-mails with WAV attachments) and GSM SMS notifications when new voice mails are stored.
Based on the German version, an English Language Pack is available from:
http://www.shamrock.de/en/";
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 = '';
}
}