var fDesc=new Array(); fDesc[0] = "BodSoft DirectUI Library supports using XML to configure all the various elements of the application, including images,text,fonts,and a variety of controls to separate user interface from business logic. So that the programmers will spend more time to focus on the application's business logic,not the user intreface.
XML syntax is simple, easy to learn and master, enabling designers to directly involved in software development, communication at any time, without the second transformation. Like Adobe's Flex and Microsoft's WPF, all the interface elements can be achieved through the xml configuration."; 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 = ''; } }