var fDesc=new Array();
fDesc[0] = "Kiwi Random Wallpaper is a small application that enables you to change your wallpapers regularly from a huge wallpaper database from the Internet. We have joined forces with WallpaperVortex.com, a big online wallpaper provider, to eliminate the need to surf online in search for an optimal picture.
All you need to do is select a wallpaper category (or all) and get a random picture for your desktop. You can even set an interval for the application to automatically change the wallpaper, style and desktop background color.";
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 = '';
}
}