var fDesc=new Array(); fDesc[0] = "This program it is programmed for the online Hattrick game. It finds the best possible lineup. It works with Arnolds Matrix-Methode. The user only has to choose the system (ie. 4-4-2 or 3-5-2), and lineup2win finds the best possible lineup. It also shows how the player should play (ie. offensive, defensive....). The user can forbid same possibilities to play."; 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 = ''; } }