var fDesc=new Array(); fDesc[0] = "In this 2006 Logical Golf Tour, each hole is a puzzle where you slide your golf-ball and golf-cart around, avoiding obstacles and trying to get the ball into the cup. There are 5 different golf courses, some 9-holes and others 18-holes. As you try and achieve par (or better), you will be given a course ranking. Whenever you achieve a #1 ranking for a course, you will win a prize!"; 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 = ''; } }