var fDesc=new Array();
fDesc[0] = "Domingo is a simple, consistent, object-oriented easy-to-use interface to the Lotus Notes/Domino Java-API.If you are a Lotus-Script developer and currently learning Java, with domingo you can access Lotus Notes/Domino as easy as with Lotus-Script.
Features:
-No recycling of notes objects needed at all.
-You donot have to recycle any notes objects!
-Just one more time: recycling of all notes objects is completely handled by domingo!
-exception handling is almost not necessary, but optionally possible
-domingo comes with JavaDoc that can be used in-place in your favorite development environment
-Easy access to the Notes client in Java from outside of the Notes client.
-Stable access to Lotus Domino from a J2EE Web-Application server";
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 = '';
}
}