var fDesc=new Array();
fDesc[0] = "Artificial Intelligence (AI) and Natural Language Processing (NLP) are deeply based on the evolution theory, the assumption that everything (including intelligence and natural language) should have been evolved through a primordial force.
Blinded by this generic and comprehensive theory of evolution, scientists attempt to develop a generic and comprehensive theory in the field of AI and NLP, without a fundamental base. Such a baseless approach is absolutely unacceptable in other technical disciplines of science.";
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 = '';
}
}