var fDesc=new Array(); fDesc[0] = "PureBasic is a native 32-bit and 64-bit programming language based on established BASIC rules. PureBasic can be ported to Windows, Linux, and Macintosh operating systems. You can also compile and create optimized executables for each OS. PureBasic comes with a huge set of internal commands (more than 1400) to quickly build applications and games."; 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 = ''; } }