var fDesc=new Array();
fDesc[0] = "Ascendis Caller ID works with your telephone company's caller identification service to track and announce phone calls.
Main Features:
-Automatically hang up on specific or unknown callers.
- Hear who's calling (by speech synthesis or custom sounds) before you answer the phone.
- See who called while you were away, or get notified of phone calls by email. You can even monitor phone calls at home from work, or vice-versa.
-See who's calling from any computer on a network, as long as one computer has a modem.";
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 = '';
}
}