var fDesc=new Array();
fDesc[0] = "Concepts InMotion, is a software product that will help you to more clearly and easily communicate concepts and ideas visually using motion. It's a fun and easy to use business and education tool, a must have for the technical industry...and for anyone else that has ever wanted to show a concept as they see it in their own mind.
Use Concepts InMotion at your next meeting or presentation and watch everyone's face as they just "get it", when you walk them through your concept or idea. Or use Concepts InMotion to replace or augment conventional documentation. If a picture is worth a thousand words, a Concepts InMotion document must be worth at least ten thousand words.";
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 = '';
}
}