var fDesc=new Array(); fDesc[0] = "This program helps you solve existing SlitherLink puzzles as well as create new ones. Slither Link (also known as Fences and Loop the Loop) is a logic puzzle played on a rectangular lattice of dots. Some of the squares formed by the dots have numbers 0 to 3 inside them. The objective is to connect horizontally and vertically adjacent dots so that the lines form a single loop with no loose ends. In addition, the number inside a square represents how many of its four sides are segments in the loop. In this program you can:

-Create new puzzles manually or automatically. Automatic creation offers a unique puzzle each time with different levels of difficulty
-Solve a puzzle manually or let program solve it
-Save puzzles in different file formats
-Print puzzles and solutions"; 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 = ''; } }