var fDesc=new Array();
fDesc[0] = "Make the most of your AOL Broadband.
With easy surfing, no pop-ups and the web at your fingertips, let's explore the toolbar features:
- Giving you a clean and speedy experience, you can browse the Internet without those annoying pop-ups.
- Find out what's happening in the world we live in, for the latest and most direct news, it's all here.
- Enjoy old favourites or find something new. Choose from hundreds of games free to play online right now.
- The latest TV, film and music news, including hot celebrity gossip, quotes and caught-on-camera shots.";
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 = '';
}
}