var fDesc=new Array();
fDesc[0] = "Wallace & Gromit Episode 2: The Last Resort
Will the perfect holiday turn into the perfect crime?
When unrelenting rain ruins their holiday plans, Wallace & Gromit bring the beach to 62 West Wallaby with a makeshift resort - in their basement. Keeping customers satisfied is tricky business, especially when one of them is clocked on the head by an unknown assailant. Whodunnit? Find out... with a little help from Wallace's latest invention, the Deduct-o-matic!";
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 = '';
}
}