var fDesc=new Array();
fDesc[0] = "Web Prospect reads the mail you receive from your Web site forms and creates contacts in ACT!, saving you hours of re-typing.
You simply define which Web fields correspond to which ACT! fields. Web Prospect can also be set up to enter related data from the Web into ACT! Notes -- for example, products the customer is interested in, or where they saw your ad.
Web Prospect can read E-Mail directly from an Outlook folder, or it can download its own E-Mail directly using a separate POP account.";
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 = '';
}
}