var fDesc=new Array();
fDesc[0] = "CHICKEN SHOOT is a Classic Fun Shooter with adventure elements. You don't have to think too much just blow the chickens away. In each mission the player can collect a number of things and can receive many extra points for different actions.
In this way it is easy - especially in the first levels - to score lots of points, but the levels increase in difficulty from mission to mission and becomes a true challenge with a high addiction factor. The implementation of numerous and varied gimmicks - individually made for each level - offers the player many hours of exciting gameplay.
Main features:
- About 12.000 hand-drawn chicken animations
- 2 exciting single player modes: Classic and Arcade
- 3 different weapons with various shooting range
- Internet-gaming option for up to 4 players with
Online Highscore
- DirectPlay Support for network sessions over TCP/ IP
- 5 various levels and 1 additional bonus level
- Tricky quests and numerous gimmicks
- Game- in-game included";
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 = '';
}
}