var fDesc=new Array(); fDesc[0] = "TerraClient allows viewing and printing of ground level satellite photographs of the United States. Featured is a unique map overlay option that automatically superimposes a "paper" roadmap over the satellite photos. This map overlay option has been designed to help users identify indistinct land features in the satellite photos. All map and photographic data is downloaded in real time from Microsoft’s free TerraServer web service. This program is freeware."; 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 = ''; } }