var fDesc=new Array(); fDesc[0] = "Sonic goes to visit his friends, the Flickies, on Flicky Island. He gets a surprise when he arrives, though. That evil Doctor Robotnik has surfaced again and is using the special location-warping powers of the Flickies in his never ending quest for the Chaos Emeralds. Turns out that the Flickies posses the power, when grouped in fives, to warp from location to location using ring portals. Sonic decides to free his friends from Robotnik and crush the madman's ambitions."; 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 = ''; } }