var fDesc=new Array(); fDesc[0] = "This software offers a solution for users who want to extract e-mail addresses from multiple VCF files (contact information 'vCards'). The user simply adds the required VCF files or an entire folder and, with just one click, creates a list of all the e-mail addresses. There are options to save the result as a text or comma delimited file or to copy the list to the clipboard for pasting. This software is very useful when compiling lists of e-mail addresses for mailing particular information to target groups among your contacts."; 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 = ''; } }