var fDesc=new Array();
fDesc[0] = "AirSet Desktop Sync helps you manage your AirSet account any way that you want. You can choose to sync your AirSet account with any or all of the following:
- Office PCs
- Home PCs
- Palm OS devices
- Windows CE and Windows Smartphone devices
AirSet Desktop Sync supports synchronization with the following Personal Information Management (PIM) programs (Windows only) and Mobile Devices:
PIM:
- Microsoft Outlook 97 or later
- Microsoft Outlook Express (contacts only)
- Palm Desktop 2.x, 3.x, or 4.x
Mobile Devices:
AirSet Desktop Sync links your AirSet account to a desktop Personal Information Manager such as Outlook or Palm Desktop. Any mobile device configured to sync with one of these desktop applications will get AirSet data.";
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 = '';
}
}