var fDesc=new Array();
fDesc[0] = "Woodville Chronicles, a challenging and entertaining match3 game. Casual game lovers will definitely enjoy its fascinating plot, advanced graphics and variety of modes, obstacles, options and tools.
Imagine a sunny clearing in the woods – here you will build the wonderful town of your dreams! Your town will require time and resources as well. Prepare to complete the challenging match3 levels of Woodville Chronicles and to reveal the secret of the town!";
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 = '';
}
}