var fDesc=new Array();
fDesc[0] = "The famous puzzle "Rubik's Cube" - now on your computer. Can you solve it? It depends on your intelligence - try it and show what you can do. In addition to standard 3x3 cube also available other options for the most hardened: 4x4, 5x5, 6x6, 7x7 or even 2x2!
The game has a user-friendly interface and intuitive control: you can rotate cube around any axis and rotate its faces by mouse. The game also supports cubes of different sizes: from 2x2 to 7x7.
You can cancel your last move, mix up the cube and reset it to initial state.";
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 = '';
}
}