app.getSharedData().getNowIsoTime = function() { var now = new Date(); var iso = now.toISOString().split('.')[0]; return iso.replace('T',' '); } app.getSharedData().addAudit = function(msg) { return '<p>' + app.getSharedData().getNewIsoTime() + ' - '+ app.getCurrentUser() + ': ' + msg + '</p>'; }