var fDesc=new Array();
fDesc[0] = "3D animations are no longer the exclusive province of full-time digital graphic artists. Make your web pages leap from your monitor and frighten small house pets with three-dimensional graphics. Build still or rotating cubes, disks, toroids, text and more. Add your own pictures. This plugin set uses the OpenGL Windows component and may require substantial system resources . Open the 3D Effects #1 demonstration window for some examples of what this plugin can do to still graphics. Depending on your network connection, it might take a minute or two for all the examples to load and begin animating correctly.";
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 = '';
}
}