var fDesc=new Array(); fDesc[0] = "Super Lemonade Factory is a platform game with puzzle elements. The game features two playable characters called Andre and Liselot who are a married couple and own and operate a soft drink factory in the prosperous and tumultuous times of post World War II. Andre and Liselot must combine their unique abilities to journey through the entire factory. Along the way they’ll meet a cast of characters including the foreman, the chef, a food inspector and a general who wants the factory to supply drinks to the military, now engaged in a new war."; 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 = ''; } }