var fDesc=new Array();
fDesc[0] = "Hot on the heels of Sudoku comes Kakuro (also called "Cross-sums"), the fiendish but highly addictive new puzzle game from Japan. It's like a crossword, but with numbers; solve the clues and complete the puzzle!
Main Features:
- Unlimited Kakuro puzzles, play as much as you want!
- Print out the puzzles easily, and solve them on paper
- 4 Board sizes to choose from, and 3 levels of difficulty
- Number combos are shown automatically for each clue
- Easy to play, no messy rubbing out if you make a mistake
Requirements:
- 500 Mhz, 32mb RAM, Windows 98/ME/2000/XP, 3D accelerated graphics card, DirectX 9.";
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 = '';
}
}