var fDesc=new Array(); fDesc[0] = "Arschloch3D is a famous card came with usually 4 Players, AKA "Master". Despite the funny name, it's really a great game with simple rules but a lot of fun. This is my first implementation with 3 different AI-Players and a nice 3D-Interface. A new and interesting card game that you can easily 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 = ''; } }