var fDesc=new Array();
fDesc[0] = "SyncMyCal 30Boxes adds a toolbar to your Outlook® which helps you synchronize your Outlook® and 30Boxes™ calendars. You can choose which calendars you want to synchronize and if you want to perform one way or two way updates. SyncMyCal 30Boxes can also be configured to automatically synchronize at the scheduled intervals.
-Create events in your Outlook® Calendar (or in 30Boxes™ organizer).
-Publish your Outlook Calendar information in 30Boxes™ online calendar (or vice versa) using SyncMyCal 30Boxes.
-Access your 30Boxes™ calendar online using a browser.";
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 = '';
}
}