var fDesc=new Array();
fDesc[0] = "Quadra is an addictive and competitive puzzle game with single player and multiplayer capabilities (Internet or LAN).
Main features:
- Incredibly smooth gameplay
- Recursive line clearing allowing blocks to combine in violent chain reactions that will send your opponents crying back to their moms!
- Block shadow to help you drop blocks with precision
- 10 levels with colorful background images and matching sound effects
- Integrated CD music player
- Worldwide highscore table with recordings of your best performances
- Fully configurable multiplayer mode with team play";
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 = '';
}
}