var fDesc=new Array(); fDesc[0] = "The Astro22 astrology program runs within its own self contained environment using a Windows Multiple Document Interface (MDI). This allows multiple windows to be opened, resized and manipulated without interfering with other programs that may be running simultaneously. In practice one active and up to eighteen passive child windows are allowed by the program and in general, the higher the screen resolution the better the program can operate"; 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 = ''; } }