var fDesc=new Array(); fDesc[0] = "webEditor is born with the intention to become a helpful tool for the web content management. We propose the following project objectives:
Generate structured documents that represent complete news. To accomplish this goal, we are going to use XML as the primary data format. We do not discard the use of some kind of relational database to manage the document relationships."; 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 = ''; } }