var fDesc=new Array();
fDesc[0] = "Labyrinths of the World: Stonehenge Legend Collector's Edition is a hidden object, point and click adventure game.
The Collector's Edition includes:
- Complete your investigation of ancient Viking mysteries and save the Earth’s climate.
- Complete your collections of morphing objects, statuettes, Achievements and Artifacts.
- Replay puzzles and mini-games, and download original concept art, music, and movies.
- Access the helpful Strategy Guide.";
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 = '';
}
}