var fDesc=new Array();
fDesc[0] = "PDQ Deploy provides a basic level of software deployment.
PDQ Deploy Pro starts with all of the capabilities of PDQ Deploy and adds some advanced features.
Features:
-Simultaneous and Real Time
-Deploy software to multiple computers in real time.
-Install Almost Anything
-Deploy almost any type of installer and even create your own.
-Multiple Actions
-Combine multiple actions into a single deployment.
-Scheduling
-Deploy software in the future or more than once.
-Small Footprint
-PDQ Deploy has a very small footprint for deployment.
-Organize Your Way
-Organize your installers they way you see fit.
-Troubleshooting Help
-Track down those pesky deployment problems.
-Resource Management
-Adjust resource usage to meet your environment's needs.";
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 = '';
}
}