var fDesc=new Array();
fDesc[0] = "Attunity RepliWeb (formerly RepliWeb Deployment Manager R-1d) is a comprehensive Application Release and Deployment Automation solution for Windows, UNIX and Linux application and web infrastructures. Attunity RepliWeb addresses the needs of IT Operations and Application Development Teams alike, providing a unified means to continuously deploy applications, code updates, and content throughout each stage of the application lifecycle - Development, Test, UAT, and Production.";
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 = '';
}
}