var fDesc=new Array(); fDesc[0] = "Spin That Wheel is a rockin large group interactive game. As a stand alone application, the software allows you to add up to 15 custom prizes to the wheel, then spin it to see what you get! (Wow, I just won a bag of Pork Rinds*) It has a random winner every time. Find yourself a great host, a really bad outfit, and you are in for a great night."; 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 = ''; } }