var fDesc=new Array(); fDesc[0] = "Fisherman Sam is an interesting action game. Use direction keys to aim the harpoon, whenever you get 2 or more fish with 1 shot, you will immediately get bonus points! Press space bar to fire freezing bombs.

By the way sharks will steal your fish, but worth a lot of money. Stay away from explosive and poisonous fish, or it will blow up all your fish in the water and shorten your achievement of your harvest. Good luck!"; 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 = ''; } }