var fDesc=new Array(); fDesc[0] = "EasyToy is a 3D modeling software. It uses a sketch-based modeling method and a 3D painting method. The user interface is very friendly, and operations are very simple. A complex 3D model can be created quickly by combining several simple operations . Compared with existing 3D systems EasyToy is easy-to-learn and easy-to-use. EasyToy has wide applications, including toy design, graphics, animation and education. It is not only suitable for toy designers to design toys and CG creators to design 3D objects but also for non-professional users, especially students, to design 3D cartoon."; 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 = ''; } }