var fDesc=new Array();
fDesc[0] = "Desktop Kakuro features a clean, easy interface and contains over 20,000 unique puzzles which you can solve.
Features:
- Contains exclusive 20x12 Gigantic puzzles!
- Different color themes to suit your tastes.
- 5 Board sizes to choose from, and 3 levels of difficulty
- Number combos are shown automatically for each clue
- Print out the puzzles easily, and solve them on paper";
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 = '';
}
}