var fDesc=new Array(); fDesc[0] = "As the owner of a new airline, and it's up to you to pilot your company to financial success. You control of every aspect of your business, from the types of planes you fly and their routes, to your corporate investments and acquisitions. But in a world of sudden tropical storms, oil crises, ill-tempered passengers and stressed-out flight personnel, it looks like cloudy skies might be coming!"; 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 = ''; } }