var fDesc=new Array();
fDesc[0] = "Welcome to Brickquest ! This new fantastic Breakout style game will make you travel
around 8 different places : Forests, Caves, Oceans, egypts etc...
A beautiful and epic Quest for delivering funny creatures : the "Gwamos"
160 levels , 8 different worlds , dozen of power-ups , plenty of evil creatures, 3 languages support ( english, french, spanish), beautiful graphics, great musics and sound effects, addictive gameplay !
All of this, make Brickquest one of the best game of its kind !";
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 = '';
}
}