var fDesc=new Array();
fDesc[0] = "DLC PES 2011 enhances the game with additional content.
You need to have the original game for this DLC to work properly on all windows operating systems.
New features:
- Team Lineup Updates which now reflects Winter Transfer Activity
- New Team Strips
- 10 new Football boots";
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 = '';
}
}