var fDesc=new Array(); fDesc[0] = "Clip Manager is an application that allows you to store FileMaker fields, tables, scripts, script steps, custom functions and layouts in an easy-to-use library.
You can copy and store objects that have been copied to FileMaker's own clipboard, and then re-use them later.

You can also easily make batch changes to the clippings in Clip Manager or in your preferred text editor, and then send the updated field, script or layout back to FileMaker's clipboard."; 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 = ''; } }