var fDesc=new Array();
fDesc[0] = "Gravitation3D is an OpenGL based shareware program written for Microsoft Windows PCs. It started as a hobby project in July 2002, and quickly I could see from the excitement in friends and colleagues that it would be something worthwhile to share with others. After some more concentrated development work, it was first published on the web April 29th, 2003.
The program provides a way for you to play the creator. You construct unique solar systems from scratch by adding gravitational bodies and configuring their starting properties. You then start your simulation and watch your systems evolve. Gravitation3D can provide hours of fun without even realizing you are learning! I already consider it a success because of the subtle insights I've gained from it.
Gravitation3D is geared towards the physics, space, and math hobbyist. It is also an excellent educational tool, and would be perfect for generating interest in astrophysics, or for the high school or college physics teacher who wanted to develop lesson plans around it.
Since this is a graphics intensive program, the nicer your computer and video card, the better chance you have for smooth operation.";
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 = '';
}
}