var fDesc=new Array(); fDesc[0] = "The Virtual Deck will let you create and play any type of card game that you can think of. You can click on conmands tools to access the virtual deck editor, or you can edit an existing
virtual deck game. The best way to learn how to make your own games is to edit one of the games we have already made up. Look at the stack attributes and rules and go from there."; 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 = ''; } }