var fDesc=new Array();
fDesc[0] = "VRweb Viewer is a Windows application written by Gerbert Orasche and Michael Picler that allows the user to view and rotate VRML objects. This program is capable of running as a stand-alone application rather than as a plug-in for a web browser.
The Amadeus Scene Viewer displays three dimensional scenes. It supports two file formats: the Hyper-G Scene Descripiton Format (SDF) and the Virtual Reality Modelling Language (VRML). VRML seems to become the new standard in the Web. It supports links, inline scenes, levels of detail etc.";
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 = '';
}
}