var fDesc=new Array(); fDesc[0] = "Try your hand at fishing to save an Indian tribe Sharp Tomahawk from dying of starvation! Selling wolf skins is not a profitable business anymore as wolf-hunting is forbidden now, and the Indians are looking for a new way to earn money for life. It turned out that some species of fish living in waters of the ocean can be sold for a pretty sum of money! The neighbor tribe seems to have stolen your idea, so you should hurry: the more time you miss, the less fish you'll 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 = ''; } }