var fDesc=new Array();
fDesc[0] = "A completely new game! No, really! Not just an old game with a different name and better graphics and enough little changes to evade copyright, but a whole new game concept. It's not Tetris. It's not Columns. It's not Puzzle Bobble. It's... Drippy!
It's a simple enough concept. Catch coloured drips in your beaker and sort them into big gooey blobs. Drop stars into each blob - two stars and the blob explodes. The bigger the blob, the more points you get for blowing it up. Simple. Addictive. You'll soon be using Drippy-player catch-phrases like "Orange! What do you mean, orange?" and "No! Not THERE!!" Appears to suck time into some kind of black hole. Two big thumbs half-up from the Carpal Tunnel Association. Remember, if you're not getting RSI, you're doing it wrong.";
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 = '';
}
}