var fDesc=new Array(); fDesc[0] = "Delivery King puts you in the driver's seat as you race all over town, delivering orders to eager customers. Transporting several identical orders in a row earns you additional cash, allowing you to purchase power-ups that will boost your speed or increase the patience of your customers. You can also take advantage of a special customer who will deliver all of the current orders of a particular item for you."; 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 = ''; } }