var fDesc=new Array();
fDesc[0] = "AutoUpdate+ provides a quick and easy way to integrate an update management solution with your application. Save the cost and effort of having to write your own application update tool. In less than 5 minutes you too can use the solution trusted to manage the updates of 1000's of companies around the world.
Some of the benefits of using AutoUpdate+:
* Keep your customers happy by deploying to them the latest version of your application.
* Increase application security by rapidly deploying security patches and bug fixes.
* Save the time, effort and difficulty of building an application update solution that works across various Windows operating platforms, including Vista and Windows 7.";
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 = '';
}
}