var fDesc=new Array(); fDesc[0] = "In Gazzoline, you have to fill the gas tanks of your clients quickly. At the end of each level you can buy upgrades for your gas station and create the ultimate money making filling station. But remember that your clients are not really patient, they can even leave without payment. Try to do the best you can to keep them in a good mood. The more happiness in the eyes of the people, the more money you will get"; 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 = ''; } }