var fDesc=new Array();
fDesc[0] = "Jigs@w Puzzle is a truly realistic jigsaw puzzle game which has everything you need to create, play and send great-looking puzzles. The game provides a very comfortable puzzling environment and superb graphics. You can create your own puzzles from your pictures or movies with optional background music. Also you can create a puzzle by cutting freely by the mouse. If you complete a puzzle, you can exhibit it in a 3D gallery. If you want to please your friends, you can send them a puzzle you have created, by e-mail.
Features:
* Create puzzles from pictures (JPG, TIF, GIF, PNG, BMP...) * Create puzzles from movies (AVI, MPG, WMV...)!!! * Create a puzzle freely cut by a mouse! * Create a puzzle cut with templates (vector EMF format)! * Add background music (MP3, MID, WAV) to your puzzle. * Modify puzzles anytime (change difficulty, shape of pieces...). * Exhibit puzzles in a 3D gallery where you can wander at your will, and peruse your successes with due pride. * Send puzzles to your friends by e-mail. * Create standalone puzzle games (EXE)! * Manage your puzzles in albums. * And, of course you can play puzzles you will create or buy from us (editions).";
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 = '';
}
}