var fDesc=new Array();
fDesc[0] = "Wallace & Gromit Take on the Country Club...
Wallace has been admitted to Prickly Thicket, the oldest country club in Lancashire. Wallace and his faithful caddie Gromit get wrapped up in a decades-old club dispute that threatens to destroy their peaceful West Wallaby lifestyle, and the duo must fight to save the neighborhood they hold dear!";
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 = '';
}
}