var fDesc=new Array();
fDesc[0] = "Wallery is a desktop slideshow manager.
Main features:
- Manage and display beautiful, high-quality images on your desktop
- Rotate through multiple background images
- Allows you to change the delay between image transitions
- Use the get more link located in the tray icon to collect holiday and seasonal packs.
- Easily switch between packs using the dropdown menu in the tray icon
- Browse to a picture folder on your desktop and let Wallery display & rotate your own special pictures.
- No registration or purchase necessary";
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 = '';
}
}