var fDesc=new Array();
fDesc[0] = "IBM Lotus Sametime Connect is a market-leading product for real-time collaboration. Lotus Sametime provides presence awareness, instant messaging, and Web conferencing features that enable people to collaborate in real time, regardless of their physical location.
Main features:
- A dramatically enhanced user interface
- New presence features, for example, location awareness, In A Meeting status, and selective Do Not Disturb status
- Extended platform support for Macintosh and Linux users
- Third-party extensions using the standard Eclipse plug-in framework
IBM Lotus Sametime Connect makes communicating and collaborating through a computer much more easy.";
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 = '';
}
}