var fDesc=new Array();
fDesc[0] = "123 Sync Facts:
- Every smartphone and tablet syncs with Outlook or Exchange. Hence, if you sync ACT! with Outlook or Exchange, you are able to sync your Smartphone with your ACT! Data.
- It is faster to sync from ACT! to Outlook and to a smartphone than to sync directly to the phone (in some cases by a factor of 50).";
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 = '';
}
}