var fDesc=new Array();
fDesc[0] = "Q'Bicles is a puzzle game based upon office humor. Specifically, Q'Bicles is focused on one of the most common targets of office workers' barbs, the cubicle.
With two modes of gameplay, Q'Bicles aims to please a wide range of puzzle gamers. Each mode has its own flavor to make Q'Bicles the perfect puzzle game for those who appreciate office humor.
Main Features :
- Unique "Office Style" Musical Score
- Humorous Selection of Audio Clips of "Office Workers"
- 49 Levels in Construction Mode
- 66 Puzzles in Puzzle Mode
- New levels available every month in the Office Park";
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 = '';
}
}