var fDesc=new Array();
fDesc[0] = "Migration Suite for Server includes all facilities to help IT administrators accomplish storage upgrade or system migration procedures on Windows Server with minimal cost and effort:
Support for SSD, AFD, 2TB and non-512B sector size disks
Automatic partition alignment boosts storage performance
P2V, P2V Restore, P2P migration for Windows OS
Advanced WinPE 3.0 bootable environment
Highly flexible "per migration" licensing policy";
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 = '';
}
}