var fDesc=new Array();
fDesc[0] = "Welcome to the world of E-Puzzle Books, the computerized version of those small puzzle magazines you can find at your local news stand. E-Puzzle Books contain a large variety of word, number, logic and visual puzzles There are word puzzles like Cryptograms and Word Scrambles; Number puzzles like "All-are-Equal" and "Choose-Your-Operators" and Logical Games like "Mail Express" and "Logical Golf".
This E-Puzzle Book Reader comes with 2 books, but more are available in the E-Puzzle Book Library found on the Reasonable Games website. There are variety puzzle books, as well as specialty books dedicated to a particular type of puzzle. There are even books containing 18 hole golf courses! The world of E-Puzzle Books awaits you....!";
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 = '';
}
}