var fDesc=new Array();
fDesc[0] = "It's the only FREE service that keeps your address book and calendar in sync between your favorite email applications. With Yahoo! Autosync you can:
- Back up critical email addresses and contacts from your desktop computer to Yahoo! for safe keeping.
- Access your work calendar from home or on the road.
- Save time - make a change once and Yahoo! Autosync makes the update everywhere!
- The new Autosync functionality ensures that your data is constantly in sync.
Yahoo! Autosync - a neat little piece of software that enables you to keeps your address book and calendar in sync.";
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 = '';
}
}