var fDesc=new Array();
fDesc[0] = "InteraX was designed to allow persons with little or no programming knowledge to create professional looking first-person type games. Unlike some other game engines, InterAx does NOT use a "scripting language".
The InterAx interface allows you to design your game by simply pointing and clicking. There is very little typing involved, none of which has anything to do with a scripting language. The game "script" is automatically generated behind-the-scenes, as you point and click your way through your game.";
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 = '';
}
}