var fDesc=new Array();
fDesc[0] = "JavaGram is a new technology specifically designed to support agile development. As a language, it shares many of Java's features - syntax, platform independence, strong type checking, object orientation, and garbage collection - but also offers capabilities that make it a much easier-to-use and productive platform, such as declarative programming, automatic remoting, asynchronous method invocation, and dynamic loading.
JavaGram enables you to deploy a standalone or multi-tier client-server application from a single code base, allowing you to run your client in an Internet browser as well as a native desktop application. It manages the underlying complexities of distributed applications for you so that you can focus on what matters most: implementing business functionality. Furthermore, time consuming activities such as application maintenance and patching are significantly simplified through a server-centric release process that automatically updates all dependent deployment points.";
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 = '';
}
}