var fDesc=new Array();
fDesc[0] = "Display spectacular images of fireworks as your screensaver!
View 40 amazing images of colorful shapes exploding in the air.
Select from a number of image transition effects. Use your favorite image as desktop wallpaper. Listen to background music, and more!
Includes an MP3 clip of "America the Beautiful" - perfect for a patriotic celebration!
Relax, and enjoy an awesome fireworks light show:
day or night, at any time of the year!";
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 = '';
}
}