var fDesc=new Array();
fDesc[0] = "Welcome to Hotel Solitaire. Take the elevator to reach one of its 20 floors. Each On each floor you will find 5 rooms, each with its own game of solitaire. Play all the way through to reach the terrace of this happy hotel and enjoy the view. So take a few days off and book yourself into Hotel Solitaire. Play 15 different card games and 100 levels, either against the clock or with no time limit.";
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 = '';
}
}