var fDesc=new Array();
fDesc[0] = "Wallpaper Slideshow is a freeware program allows you to set a list of files that you would like displayed as your computer's desktop wallpaper. The pictures are then rotated through on a time interval.
Features:
- Automatically changes your computer's desktop wallpaper.
- Windows 95/98/Me/NT/2000/XP
- Program a list of files or folders to rotate through.
- Custom time interval for changing the wallpaper.
- Set images to be rotated sequentially or randomly.";
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 = '';
}
}