var fDesc=new Array(); fDesc[0] = "QR Codes is a program that allows you to make text in your scannable drawings using any mobile phone or tablet with a camera. It can represent plain text, URLs, contact information, or geographic coordinates (using the FIELD command). Any existing text objects can be converted to QR codes by setting the Optically Scannable (text) property to 'yes' in the Property palette."; 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 = ''; } }