var fDesc=new Array(); fDesc[0] = "JSONBuddy is an app that allows you to view, edit and format your JSON data. You can collapse and expand sections of JSON data with a single click, create JSON content in less time with intelligent context sensitive entry-helpers showing properties from any assigned JSON schema, avoid JSON parsing problems with the built-in JSON syntax checking, validate JSON data using the JSON Schema standard, provide JSON type definitions for further checking of your JSON data, resolve problems fast with the jump-to-error functionalities, and more."; 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 = ''; } }