var fDesc=new Array(); fDesc[0] = "Do you use journaling? If so, you know how long it can take to turn it on or off for each contact. Now you can turn journaling on or off for all contacts within a folder with just one click. Normally, each contact has to be individually selected but with this add-in, all contacts within the folder chosen have their journaling turned on or off."; 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 = ''; } }