var fDesc=new Array();
fDesc[0] = "IceWarp Outlook Connector allows you to synchronize information between your IceWarp Server Account and Outlook. Features:
- High stability with extremely low maintenance.
- Small plug-in compatible with Microsoft Outlook versions 2000, XP, 2003 and 2007. But NOT Outlook Express.
- Enables synchronization of Calendar entries, Contacts, Events, Notes, Tasks, Journals and Shared Folders between Outlook and the IceWarp Server.
- Share information with other Users.
- Automatic synchronization.
- Supports all items and entries in Outlook including attachments, folders, vCards, iCalendar, vFreeBusy information, attendees, planning, etc.";
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 = '';
}
}