var fDesc=new Array();
fDesc[0] = "Powerful,feature rich Outlook contact import and export application for Microsoft Outlook 2000-2010.
ContactGenie MultiPort (CMP) is a contact import/export utility for use with Outlook '2000-'2010 providing full support for custom forms/fields in PST, Exchange Mailbox or Exchange public folders with ability to <update> pre-existing contacts. Import/export criteria can be saved for repetitive use via unattended command line operation using Windows Task Scheduler or any 3rd party scheduler.";
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 = '';
}
}