var fDesc=new Array(); fDesc[0] = "CardRunners EV is advanced poker analysis program. Using its hover-and-click based interface, you will be able to build a decision tree, after which the application will calculate the EV of every decision within that tree. Beneath each action in a tree, is a list of the conditions under which the action is taken. Thus, the charts are easy to understand/read."; 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 = ''; } }