var fDesc=new Array(); fDesc[0] = "Froggy Shoot Out is a First Person Shooter (FPS) game. Your goal is to kill all the frogs that have taken control of your town. You will have to find the keys that open the doors between levels, where you will fight against different frogs, in different environments, such as stables, general stores, saloons, and jails.

You will move your character using que W,A,S and D keys. The SPACE key will be used to jump, while the C key will allow you to crawl. The SHIFT key must be pressed to run. You will select weapons using the keys from 1 to 9, and Enter to use the selected item. You will fire your gun using the left button of your mouse and you will reload it using the R key. The Q and E key will allow you to peek, while the right mouse button will let you zoom in. You must shoot each frog three times in order to kill it. To proceed to the next level you must collect the appropriate key to open the proper door, but you won´t access the next level till every frog is dead. Collecting giant fireflies will give you extra health, which you will lose each time a frog hits 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 = ''; } }