var fDesc=new Array();
fDesc[0] = "MINOS Web is a connectivity tool for the iSeries via a browser.
Using JAVA's power, the information system is immediately available on the Web
without modifying the 5250 applications.
MINOS Web allows you to construct an Intranet/Extranet/Internet solution in just a few hours and benefit from all the Web technology. Each Internet or Intranet connection is seen as a 5250 connection and a Java applet downloaded before login, ensures the management of your screens.";
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 = '';
}
}