var fDesc=new Array();
fDesc[0] = "SoliLuxe is a large, free collection of Solitaire games in open and cross-platform format. 215 variations out of the box.
SoliLuxe is written entirely in Java, which makes it fairly future- and platform-proof.
Although SoliLuxe is primarily aimed at the Windows market, you can run SoliLuxe on any operating system or platform that provides a fully featured Java SE 6 runtime environment (JRE). Put SoliLuxe on a USB stick or similar and you can move it between computers and operating systems, carrying your personal settings and statistics with you.";
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 = '';
}
}