var fDesc=new Array(); fDesc[0] = "RunRev LiveCode lets you design mobile applications easily. You can drag-and-drop buttons, progress-bars, various shapes, etc. to the form which makes it similar to Visual Studio interface. You can double-click the controls to define their properties such as font, 3D style, and visible-text. The online tutorials will help you get started with coding."; 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 = ''; } }