var fDesc=new Array();
fDesc[0] = "Call the plumber, quick! Theres a leak somewhere, hear it? DRIP DROP DRIP DROP! Oh, actually its DRIP DROP, a new game collection of 3 falling object puzzles: Wipe out your foe with FLOOD and cast him away with waves; In game 2, hurry because you have a need to FEED! The animals are hungry! In the third game, overpower your opponent. - just make him cry with CLASSIC and play this falling object puzzle until the wee hours of the night.";
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 = '';
}
}