var fDesc=new Array(); fDesc[0] = "Align Support is an application that holds a list of support stations, grouped by the support provider and/or locale. When clients call, they should be given a support station name. Selecting a specific support station will show its address in the “Connect To:” field. Selecting the ‘head’ of any of the support groups will select the first support station in that group."; 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 = ''; } }