var fDesc=new Array(); fDesc[0] = "Spade Buddy is an auto spades card counting program. It is programmed to keep track of all cards that are played by all members of the table. It also autoplays and shows and plays hints. This handy Buddy shows - at a glance - the complete hand history, the last hand played, which player is out of which suit, the amount of tricks per hand, and the remaining cards left to be played."; 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 = ''; } }