var fDesc=new Array();
fDesc[0] = "Keyframe Animation is a Ruby plugin for SketchUp. With this tool you can easy add movement to any object in your model.
You can move the camera too, which makes it ideal for walk-throughs. Best of all, the animation you create can be exported to a movie, directly from SketchUp.";
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 = '';
}
}