var fDesc=new Array(); fDesc[0] = "There is plenty of detail in the OpenCalais Web Service documentation for those who want to roll up their sleeves and write code to analyze text. But many folks are just interested in analyzing text without developing a first-hand understanding of the plumbing that underlies the analysis. The OpenCalais Submission Tool is designed for those users. The Submission Tool performs semantic analysis of files supplied by the user via a series of submission screens. No coding is required on the part of the user, although you are still required to have an API Key. For information about obtaining an API Key"; 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 = ''; } }