var fDesc=new Array();
fDesc[0] = "Block Story is an open word adventure RPG game for Windows OS.
Main features:
- Discover several totally new and exciting quests.
- Learn from a wise Wizard on how to discover the many wonders of Block Story.
- Ride on dragons and 29 other creatures.
- Earn free diamonds for playing four days in a row.
- Diamond purchase via Google Wallet.
- Infinite hours of RPG exploration game play.";
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 = '';
}
}