var fDesc=new Array();
fDesc[0] = "Johnny Depp Dressup is an arcade game in which you have to select the clothes, shoes, glasses, shirt for the handsome male model Johnny. You also have to design the hire style for him. You have to click and drag the articles on him, and, at the same time, drag the items away which are not suitable for him.
You can print your perfect work after your designing.";
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 = '';
}
}