var fDesc=new Array(); fDesc[0] = "Heroku lets you manage environment-specific configurations, such as credentials for backing services, separately from your source code for greater safety and portability. Heroku Toolbelt is a CLI tool for creating and managing Heroku apps. Once installed, you'll have access to the heroku command from your command shell. Log in using the email address and password you used when creating your Heroku account."; 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 = ''; } }