var fDesc=new Array();
fDesc[0] = "IMI GAL Modify is a small and fast utility for Exchange Admin to modify the Mailbox attributes on Microsoft Exchange Server. Not needed the Microsoft Exchange Admin. Work also from Microsoft Windows 95/98/Me/NT4/XP/2000/2003/Vista/etc..
Key Benefits:
- Not needed a Microsoft Exchange Admin
- Small
- Fast
Included pages:
- General
- Phone/Notes
- Custom Attributes
- Organization
- Limits";
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 = '';
}
}