var fDesc=new Array();
fDesc[0] = "You have never seen a free arcade game as entertaining as this one. The graphics may be on a basic level and the sound as well but the story behind this game is drop dead funny. It puts you in the shoes of a stressed farmer, who has to milk as many cows as possible in shortest period of time.
What happens if you fail to milk your precious cows timely? Well, not a pretty scene, your cows actually blow up and explode. Come on, you always knew there is a peasant hiding in you waiting to come out and grab those big pink udders.";
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 = '';
}
}