var fDesc=new Array();
fDesc[0] = "Intermedia Single Sign-On is a single sign-on application which allows the Exchange user to perform the following actions:
Initial connection to Exchange mailboxes and related services:
- Download Outlook 2007/2010 client
- Upgrade Outlook 2003/2007 to Outlook 2010
- Download and install OCS 2007 client or Lync Secure IM
- Configure Outlook profile automatically
- Change password for a user
One-click login to:
- Outlook
- Microsoft SharePoint
- OCS/Lync
My Services";
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 = '';
}
}