var fDesc=new Array();
fDesc[0] = "DOGA-L series is software that you can use to produce Computer Graphics animations (CGA).
People say that learning CG software is difficult. DOGA-L series is designed so you can learn gradually from a beginner to an advanced stage.
DOGA-L3 is the third lesson(L3) of the L-series. Complete beginners can produce CGA smoothly, learning the basics of CGA by using this software.
You can express the complicated action, high-level material expression and the human body with knowledge and the operation acquiring with L2.
The new function of the DOGA-L3 is explained below.
With L3 you can set your own textures and patterns which imported from files.
Also you can enjoy various mapping options and cell-like material settings.
With L3, you can express bumps, emittion, speculation, transperancy and combination of them.
You can make a fine expression using various patterns suitable for effects.
Furthermore, you can use animated picture as a pattern for expressions like burning fire and lightening.";
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 = '';
}
}