var fDesc=new Array();
fDesc[0] = "Microsoft Talking Agent Plug-in is designed for eReminder - Easy Calendar & Reminder and Easy Tracker. It comes with a cast of characters including Peedy, Merlin, Genie, and Robby. If you specify Popup an agent as a reminder way, then an Microsoft Agent will pop up and read the notification when the appointment/task is due.
With this Microsoft Talking Agent Plug-in, eReminder/Easy Tracker will reminder you with fun, make notification as a interesting way.";
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 = '';
}
}