var fDesc=new Array();
fDesc[0] = "Use this quick search utility to find contact details of your co-workers. Turn the contact details already in the organization's MS Active Directory into a phone book. Corporate Directory retrieves in 2 seconds any extension, mobile number or e-mail address (and other details) of anyone in your organization. Corporate directory is optimized to return results in the fastest way possible - as you type. Corporate Directory works offline for laptop users. No more lookup on intranet or long lists. This is a real productivity enhancer.";
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 = '';
}
}