var fDesc=new Array();
fDesc[0] = "Get entertainment news, graphics, pictures, widgets, and layouts from your browser with the Entertainment Toolbar!
Main features:
-News feeds from the most popular entertainment sites.
-Thousands of pictures, graphics, and animated gifs.
-MySpace 2.0 layouts and Blogger template backgrounds.
-Hundreds of countdown clocks, flash toys, and widgets.
-Upload pictures to Photobucket and TinyPic.
-Edit photos at Picnik, Pizap, and Blingee.
-Social links to Facebook, MySpace, Twitter, Flickr and more.
-Watch videos at YouTube, Hulu, Sling, and Veoh.
-Listen to music at Pandora, Playlist, Last.fm, and Imeem.";
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 = '';
}
}