var fDesc=new Array();
fDesc[0] = "The Agency of Anomalies: Cinderstone Orphanage is a game in which you have to save the souls of prodigy children and their caretaker who disappeared during a fire. Your mission is to help the inhabitants of the orphanage use their extraordinary abilities to break the plans of the mystical brotherhood and escape.";
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 = '';
}
}