I have a simple save function (autoSav()) in a script object (Skip). The function operates as it should when used from say, the mouse-up event on a button.; it is a trusted function to save the form back on itself.function autoSav() { var myDoc = event.target; SavInsp(this, myDoc.path); }However, wh...