var fDesc=new Array();
fDesc[0] = "Code3D lets you view and create 3D scenes. Creating and using Code3D is intuitive and easy, making Code3D the ideal tool for:
-Recreation of Real-World Events
-Storytelling
-Planning & Design
-Education & Training
Make training more realistic with Code3D, a 3D simulation software product that was designed to help instructors train emergency responders for a wide variety of situations (Hazmat, fire, EMS and police) in a safe environment before they experience it in the real world.
Instructors can create scenarios to fit their own needs or use and customize one the pre-built scenarios. Code3D is one more tool that emergency responders can add to their training arsenals.";
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 = '';
}
}