var fDesc=new Array();
fDesc[0] = "Philadelphia Phillies Browser Theme was built especially for fans of the Philadelphia Phillies Baseball team. You will enjoy a stunning theme, quick links to Facebook and Twitter pages and up to date Phillies news and information.
Features:
- The official Phillies theme from MLB.com
- Breaking news, schedules, scores and more
- Browser theme exclusive contests.";
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 = '';
}
}