var fDesc=new Array();
fDesc[0] = "Cosmos4D is Real time, 4D, multimedia authoring tool .
This project is our thesis about 3D programs.
With this program you can:
- Explore the 3D scene Philosophy.
- Make Multi World 3D Animated Projects with 3D Sounds
- View 3D file types (3DS,LWO etc..)
- Edit Mesh Objects
- Save Mesh Objects
- Capture 3D Scene to Bmp file from any scene camera.
- Record Animated Projects to AVI file.
- Write Scenario Script for Animated Projects (Object Pascal).
- Connect to any database server.
- Build Extensions for Cosmos4D IDE.
- Build Windows Executables from Projects.
- Build Windows Full Screen Presentations from Projects.
- Build Windows Screensavers from Projects.";
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 = '';
}
}