var fDesc=new Array(); fDesc[0] = "With WinSmit you can create your own AIX SMIT Menus with just a few clicks. Almost every AIX administrator has used AIX SMIT before. SMIT (System Management Interface Tool) provides the front-end to command line programs and checks the validity of the input parameters. So administrators don’t need to remember the exact syntax and parameters for any given command."; 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 = ''; } }