var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to quickly convert multiple VCFs to CSVs. Simply drag and drop VCF files into the software and then click a button to start the process. There are features to extract only names, addresses e-mails or phone numbers. There is also a feature to save files in Gmail CSV format so contacts can be imported to Gmail. There are features to format the CSV output with tabs, semicolons, commas, comma-spaces, double quotes, carriage returns, etc. Output CSV files will be put in the same folder as the source VCFs."; 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 = ''; } }