var fDesc=new Array();
fDesc[0] = "Silent Nights 2: Children’s Orchestra is a Hidden Object Puzzle Adventure game in which you decipher clues and solve complex puzzles.
You rose from the ashes of a family tragedy to become a famous French soprano. Now your daughters are following in your musical footsteps, and you couldn't be more proud. But on the night of a prestigious concert in Italy, a fire breaks out, and a mysterious masked man leads your children away! Follow a trail of secrets and deception to find the masked man and save your daughters before they fall victim to a dangerous experiment.";
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 = '';
}
}