var fDesc=new Array(); fDesc[0] = "XLingPaper is a way to author and archive linguistic papers or books using XML. My personal preference for writing XLingPaper files is to use the XMLmind XML Editor. It makes writing XML much easier than other editors I’ve used. The best explanation can be found in two papers. Please see Simons and Black (2009) for an explanation of the key notions and motivations. Then see Black (2009) for how XLingPaper addresses these notions."; 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 = ''; } }