var fDesc=new Array();
fDesc[0] = "KosJCross is a game that allows you to solve Japanese Crosswords (puzzles also known as nonograms, griddles, paint-by-numbers). This award-winning logic game contains more than 200 amazing pictures coded by numbers. These pictures are categorized by themes, complexity and colors.
The game provides the following features:
- User-friendly graphical interface with multi-language support
- More than 200 amazing pictures
- Support for user profiles (allows different users to solve crosswords independently)
- Automatic saving and restoring of the solution state for each user
- Solving colored crosswords(18 colors palette)
- Display of crosswords in a convenient tree view, categorized by subject
- Display of crossword complexity and crossword color-type (black and white or colored)
- Display of crossword's resolving status in a tree view
- Ability to undo the last action performed when solving the crossword
- Three different type of brushes (point, line and rectangle) for crosswords
- Cursor indicates the current fill color
- Zoom In and Zoom Out for the game field with crossword
- Thumbnail window";
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 = '';
}
}