var fDesc=new Array();
fDesc[0] = "GearVox is a talking email and talking time utility for Windows 9X/NT/2000/XP. Animated characters will speak the time and read your e-mail to you.
GearVox can be configured to periodically check an unlimited number of e-mail accounts optionally speaking the sender, subject, and body of the e-mail. GearVox supports POP3, IMAP and Exchange (MAPI) e-mail servers
GearVox resides in the Window’s tray area. A tray icon right click menu provides access to many of GearVox’s actions and configuration options.";
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 = '';
}
}