var fDesc=new Array();
fDesc[0] = "EaseUS Deploy Manager allows you to deploy OS quickly and easy.
Main Features:
- Time and Cost Saving Maximization - deploy a master image to multiple PCs/Servers across network simultaneously while significantly cutting down costs.
- Efficient Rescue Solution - efficient recovery tool to get system back on track in most emergency cases.
- Group Management - deploy several groups of machines with different system images or settings.
- Hardware Versatility - built-in universal deploy ensures new systems boot up correctly.
- WinPE Bootable Environments - boot from WinPE and add drivers to ensure it works on new hardware.
- Wake-on-LAN Support - remotely power on or wake up computers to deploy via the network.";
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 = '';
}
}