var fDesc=new Array();
fDesc[0] = "DB2 Express-C™ is the free version of one of the most advanced database management systems in the world. Why pay when you can have all you need for free? DB2 Express-C is free to develop, deploy and distribute.
It is a fast, secure, reliable, and amazingly scalable dataserver, ideal for most startups and small/medium sized businesses. DB2 Express-C is available on Linux, Unix, Windows, and now Mac OS X as well! It also enables developers to easily handle XML through the native storage technology called pureXML™. Whether you develop in Java, .Net, Ruby, Python, Perl or pretty much any other programming language out there, DB2 can be your technological advantage.
DB2 Express-C is not a crippled version of DB2. Au contraire, DB2 Express-C shares the same code as the other commercial editions and it has a very generous license, which doesn't impose limits on your database.";
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 = '';
}
}