var fDesc=new Array();
fDesc[0] = "Windows 7 Logon Background Changer is free open source software that let you change the wallpaper of the Windows 7 login screen (also known as "welcome screen", "login screen" or LogonUI).
On a side note, this small program is WPF based, it's a nice technical demo of Windows Presentation Foundation capabilities for those interested in WPF. It requires a decent GPU for the 3D animations to run smoothly.";
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 = '';
}
}