var fDesc=new Array(); fDesc[0] = "The Citrix portion of the package allows the selection of the desired Citrix client(i.e. Full Program Neighborhood, Web Client, PN Agent) depending on whether or not the particular client machine has a previous Citrix client version installed. If a previous version exists, the Citrix portion simply updates accordingly. If no previous version exists, the Citrix portion allows a choice of the three Citrix clients mentioned above."; 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 = ''; } }