var fDesc=new Array(); fDesc[0] = "The EIP Template is designed with the objective to add full template support for the Clarion Edit-in-place List box. You are not required to add any embed code to the implemented Edit-in-place functionality in your list box, as long as the functionality is supported by the EIP Template. The EIP Templates is also polymorphic, since the programmer specifies the features and functions that are required for the procedure."; 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 = ''; } }