var fDesc=new Array(); fDesc[0] = "Sometimes, you just quickly have to get a list of all the e-mail addresses in your address book. This can happen, for example, when you are configuring an anti-spam tool and you want to put all the addresses from your address book in the 'white list', to make sure that the e-mails coming from your friends won't be marked as spam."; 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 = ''; } }