var fDesc=new Array();
fDesc[0] = "Mystical Princess Dress Up is an very entertaining game developed by Popular Games Network.
Magical outfits for a mystical princess! Find the most spellbinding combination and rule the wardrobe kingdom...
Dress her up for the adventure of today choosing one of her beautiful outfits and gowns.";
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 = '';
}
}