var fDesc=new Array();
fDesc[0] = "Use AllSaver! to create a slideshow display of multiple screensavers.
Cycle through a list of screensavers installed on your computer.
Set a duration time for viewing each screensaver,or display up to 4 screensaver windows at once!
Plus, augment the capabilities of your favorite screensavers with new AllSaver! features: add a scrolling text caption, play background music, monitor 'GetRight' status, and more!
Relax, and view your favorite list of screensavers, anytime!
Manage the list of screensavers* installed on your system.
- Automatically cycle through an unlimited number of screensavers.
- Create a playlist of screensavers to be displayed.
- Select the duration time for displaying each screensaver.
- Have direct access to each of the screensaver configuration menus via AllSaver!
Display one screensaver at a time, or create a split screen effect with up to 4 screensavers simultaneously!
PLUS - AUGMENT THE CAPABILITIES OF YOUR SCREENSAVERS WITH NEW ALLSAVER! FEATURES:
Scrolling Marquee: Display a text caption of your choice at the bottom of your display:
-screensaver name,
- the current date and time,
- time elapsed since the screen saver started,
- GetRight download status,
- or a personal message in any font and color you choose.
- Includes multiple language support for the current date and time:
English, French, Spanish, Portugese, Italian, Dutch, German and Swedish.";
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 = '';
}
}