var fDesc=new Array(); fDesc[0] = "League of Legends Custom Builds is a cross-platform Java application for the game League of Legends, allowing you to define for each champion, a list of predefined custom builds. It is then possible to select the build that will be displayed in the "Recommended" section of the Shop menu during a game. It allows you to create an unlimited number of custom builds (CB) and to choose the one to display, regarding the chosen champion."; 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 = ''; } }