var fDesc=new Array(); fDesc[0] = "The object of FrostByte Freddie is similar to Pengo in that you are a penguin that is stuck in a maze of Ice Blocks. It is your job to rid the maze of pesky SnoBees that are trying to kill FrostByte Freddie!

FrostByte Freddie (FBF) has several weapons at his disposal including:

- Crushing Ice Blocks
- Push Ice Blocks
- Freezing the SnoBees using the Walls
- Power Ups"; 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 = ''; } }