var fDesc=new Array();
fDesc[0] = "Directories Add-On for Outlook
An add-on for seamless integration into Microsoft Outlook that allows for server-based or workstation-specific administration and management.
In collaboration with specialized partners, Directories has developed add-ons based on Directories Access web services for numerous applications, e.g. for Microsoft Outlook and various ERP/CRM systems.";
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 = '';
}
}