var fDesc=new Array();
fDesc[0] = "The Dundas Dashboard Deployment Center is an efficient and comprehensive application that lets you install, upgrade and maintain instances of Dundas Dashboard on a server computer.
A Dundas Dashboard instance is simply a named version of the Dundas Dashboard product. As an example, you can install a Dundas Dashboard instance for development, testing or staging purposes, and have a separate instance dedicated to production usage.";
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 = '';
}
}