var fDesc=new Array(); fDesc[0] = "MoonPhase displays the current phase of the moon on the Today Screen of your Pocket PC/Windows Mobile device.
A tap on the Moon will bring up a window that will show when the various phases (new moon, full moon, etc.) will occur within the current lunar cycle."; 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 = ''; } }