var fDesc=new Array();
fDesc[0] = "Tanzzle is the unique silhouette maker software:
- Create tons of new challenging patterns
- Change colors, background and view
- Save and open patterns in the TZL format
- Easily recover the recent patterns
- Choose among four different sets of pieces
- Play off-line on the board
- Shift, flip and rotate each piece
- Automatically check for the solution
- Look at the wireframe of the pattern";
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 = '';
}
}