var fDesc=new Array();
fDesc[0] = "Help Strawberry gather fruit for her famous treats.
Flip-flop fruit to make 3 or more of the same kind in a row. The more items you can gather in a row the higher you will score. Flip-flop fruits to line up 3 or more of the same kind in a row so they disappear. Swap fruits by clicking on a fruit and dragging it over the one next to it.";
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 = '';
}
}