var fDesc=new Array();
fDesc[0] = "5 Realms of Cards is nothing like an ordinary solitaire game - it's visually nice, story-driven and with an all-new and addictive game mechanic.
Your objective is to help a young princess named Jokerina restore peace and beauty by recovering magic Signs of Suits broken by evil forces. To achieve this goal, you must go through 5 realms and 72 levels full of addictive solitaire playing fun. Enjoy!
Main Features :
- Revolutionary new solitaire gameplay
- Wonderful story with a young princess Jokerina
- 5 stages with over 70 levels to go
- Two different game modes: Timed, and Untimed
- Beautifully rendered visuals
- Author's music to enhance playing experience
- Full-screen display available
- Addictive new game mechanic";
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 = '';
}
}