var fDesc=new Array(); fDesc[0] = "This software displays two versions of the world map, a day, and a night version, and fades between them to show which portions of the world are in daylight, and which aren't. In other words, this is a dynamic wallpaper that updates based on where the sun is relative to the surface of the earth. Version 0.12 is the most stable so far. Users of previous versions are encouraged to upgrade."; 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 = ''; } }