var fDesc=new Array(); fDesc[0] = "myFMbutler Clip Manager is a tool to manage the FileMaker clipboard.
It 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.
Clip Manager also offers and integrated “Find & Replace”, that allows you to easily make batch
changes to the clippings, 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 = ''; } }