var fDesc=new Array();
fDesc[0] = "The N series System Manager software is now available to assist you in discovering and configuring IBM® System Storage™ N series storage systems and host servers using any of the FC, iSCSI, CIFS and NFS protocols for connectivity.
Features:
-The software supports the N3300, N3600, N6040 and N6070 storage systems and the N5000 series storage systems running Data ONTAP®
-The software is installed and used on a supported Windows® platform as described in the "Quick Start Guide" and Release Notes available from the N series Support Web Site.
-The majority of the instructions for using the System Manager are delivered as imbedded help in its graphical user interface (GUI).";
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 = '';
}
}