var fDesc=new Array();
fDesc[0] = "New VMA version Pro 5.0 - new important evolution of the Virtual Moon Atlas.
This software becomes now the “ATLUN” module of the Virtual Moon Atlas.. This permits now :
- Use of very high resolution textures provided by Christian Legrand.
- Use of different textures according to the applied zoom level.
- Complete Moon globe rotation, even above poles.
- Terminator dynamic shadows display according to the applied phase.
- Real bi-windowed display.
- Maps display in “full screen” mode even on large LCD monitors and TV and videoprojectors.";
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 = '';
}
}