var fDesc=new Array();
fDesc[0] = "OpenProtocols allows you to integrate Outlook Calendar, Contacts, and Tasks with services like iCloud, Yahoo!, and Zimbra. This application unlocks functionality in Outlook allowing integrated scheduling with a wider array of cloud service providers. It also provides additional features like Notes, Free/Busy, and Global Address List support.
OpenProtocols Connector requires Microsoft Outlook 2003 or later (32 or 64 bit).";
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 = '';
}
}