var fDesc=new Array();
fDesc[0] = "Wallpaper Master is a highly customizable desktop wallpaper manager.
Improvements:
-Support for many more image types (GIF, PNG, JPEG-2000 (JP2), TGA, WMF and PCX images).
-Max wallpapers increased to 64000 per category! (Rather than 5000).
-Now includes a fullscreen Slideshow mode and a Screensaver.
-New MultiMonitor support! - Change wallpaper on your dual monitors.
-Automatically change wallpaper at specific times of every day.
-Skip a cycle if CPU load is too high (useful for when playing games).
-Position portrait images to uncover icons.
-Apply a simple effect to a certain percentage of wallpaper shown.
-Ability to overlay the image's name onto the wallpaper (watermarking).
-A huge performance boost and much improved user interface.
-Many more options and more customizable!";
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 = '';
}
}