var fDesc=new Array();
fDesc[0] = "Windows Services for UNIX provides a full range of supported and fully integrated cross-platform network services for enterprise customers to use in integrating Windows into their existing UNIX-based environments.
Requirements
- Supported Operating Systems:Windows 2000;Windows 2000 Service Pack 3;Windows 2000 Service Pack 4;Windows Server 2003;Windows XP
- The minimum system requirements for installing Windows Services for UNIX depends on which components you are installing and the file system of the disk where the components will be installed.
- The maximum disk space required to install all Windows Services for UNIX components is approximately 275 MB. The minimum disk space required is 19 MB.";
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 = '';
}
}