var fDesc=new Array();
fDesc[0] = "Take a seat in the director's chair in Tinseltown Dreams: The 50's, a fun new Match 3 game set during this renowned time in film.
Play over 70 cinema inspired levels using exciting power-ups, hilarious combo bonuses, and a wild popcorn maker! Hone your tile swapping skills to earn a bigger budget, then choose from over 180 unique props and characters or your movie. Make each film unique as you arrange your props and actors on stage as
you see fit! Once you've created your masterpiece, share your finished movie set with your friends!";
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 = '';
}
}