var fDesc=new Array();
fDesc[0] = "CallClerk automatically manages and logs all your calls, exactly the way you want. For nuisance callers CallClerk can play a 'please do not call again' message and then automatically hang-up on the caller.
For familiar and unfamiliar callers you can set CallClerk to pop-up a display with the name, number and picture of the caller, sound a distinctive ring, announce the caller's name over your PC speakers, pop-up an Outlook contact card and journal entry, send you an e-mail, send a tweet, and/or update your Facebook page to let you know someone has called.";
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 = '';
}
}