try{ var POLL_INTERVAL = 50; // Max number of poll attempts var MAX_POLL_COUNT = 5; var pollCount = 0; function poll() { pollCount++; if ((window.Dmdbase_CDC && window.Dmdbase_CDC.CompanyProfile && window.Dmdbase_CDC.targetReady === true) || pollCount === MAX_POLL_COUNT) { //console.log("running create global mbox"); TNT.createGlobalMbox(); clearTimeout(poll); } else if (pollCount < MAX_POLL_COUNT) { //console.log("global mbox not found yet"); setTimeout(poll, POLL_INTERVAL); } } poll(); } catch(e){ console.log(e); }