var fDesc=new Array();
fDesc[0] = "Syncs Events, Tasks, Notes between Outlook to Pocket Informant 2.0 via network
- Supports local WiFi Bonjour Syncing with little configuration
- Supports user-configured port connection allowing for sync over WAN
- Syncs Event Categories as Calendars or Tags
- Syncs Task Categories as Calendars, Tags, Projects, or Contexts";
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 = '';
}
}