var fDesc=new Array();
fDesc[0] = "The Verizon Toolbar not only gives you quick access to all your favorite Verizon pages it also has everything you need to manage the Internet & your life with ease. Here is a quick look at all the Verizon Toolbar has to offer. Your favorite search engine goes with you to every page you visit online.
Looking for a quick diversion? Great online games are a mouse click away- with everything from action to card games to puzzles and everything in between at your finger tips.
Managing your Verizon account has never been so easy- pay your bill, check your services and much more all from the Toolbar.
Start now with best-in-class tools for keeping your computer, your family and your information safe online, plus online sharing & backup access.
You'll have one click access to your Verizon Webmail. Check your messages, write a quick email, check your daily calendar and much more with this robust tool.";
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 = '';
}
}