var fDesc=new Array();
fDesc[0] = "Carneades is an argument mapping and evaluation application, with a graphical user interface, and a software library for building applications supporting various argumentation tasks.
Carneades provides tools supporting a variety of argumentation tasks, including:
-argument construction from conceptual models (ontologies), defeasible rules and argumentation schemes
-argument evaluation, using proof burdens and standards and a model of the audience
-finding positions to support claims, using abduction
-argument mapping and visualization
-argument interchange in XML, using the Legal Knowledge Interchange Format (LKIF)";
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 = '';
}
}