var fDesc=new Array();
fDesc[0] = "Gravel is a simple simulation which models the behaviour of astronomical objects in space, according to Newton's Laws of Gravity.
You define several objects (stating their mass (kg), position (m) and velocity (m/s)) and Gravel calculates how these objects would behave in space.
You can even tell Gravel to place one or more objects in orbit around an other object and Gravel will automatically choose the right orbital speed.";
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 = '';
}
}