var fDesc=new Array();
fDesc[0] = "RC CAD is an acronym for "Radio Control - Computer Aided Design". This software is specially designed to help modelers to create airplanes. It supplies a real-time 3D visualization of the model you are designing.
RcCad is:
- Easy to use. Just click and re-shape wings, fuselage, RcCad handles 3D data processing easily.
- Fast. When you change the features of your plane, the 3D view is immediately updated. The visualization is also interactive, so that you can rotate, zoom-in, etc.. in real time.
- Cheap. The commercial version is sold at a competitive price in order to offer CAD to the greatest number of modelers.";
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 = '';
}
}