var fDesc=new Array();
fDesc[0] = "With Calendar ImportExport, you are able to easily import multiple iCal/vCal files (known as .ics, .vcs files) to your Microsoft® Outlook® calendar - simply, select the outlook calendar and the files to import - the app does the job from there.
You are also able to export multiple Outlook calendars to the widely adopted iCal or vCal format, this provides an openly-supported calendar file that can be sent to any recipient you need to share the calendar with.";
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 = '';
}
}