var fDesc=new Array();
fDesc[0] = "Use your contacts togethe rwith others, your partners must not be in the same LAN with you. This Add-In synchronizes your Outlook 2002/2003 contacts over E-Mail.
The only thnig you need, is Outlook 2002/2003, wich can recive and send E-Mails.
You can share every Contactfolder you want.
Excludes private contacts from synchronisation
After the installation, you get a new propertypage into your contactsfolders on which you can choice the synchronisationpropertys.
Easy installation: The only thing you must know, are the E-Mail adresses from your partners.";
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 = '';
}
}