var fDesc=new Array();
fDesc[0] = "WallSwap is an automatic wallpaper changer for Windows. Give WallSwap a list of files or point it at an entire directory of pictures and it will automatically cycle your Windows desktop background through them. Runs on Windows 9x/ME, NT4, 2000 and XP.
Main features:
-Use GIF, jpeg, and PNG images (and bitmaps)
-Center, Stretch or Tile your wallpaper image
-Use HTML web pages as your wallpaper
-Compatible with Active Desktop";
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 = '';
}
}