function tgRem () {
    function loadScriptAsync(scriptSrc, callback) {
        if (typeof callback !== 'function') {
            throw new Error('Not a valid callback for async script load');
        }
        var script = document.createElement('script');
        script.onload = callback;
        script.src = scriptSrc;
        document.head.appendChild(script);
    } 

    loadScriptAsync("https://www.googletagmanager.com/gtag/js?id=AW-753664851", function() {
  		window.dataLayer = window.dataLayer || [];
  		function gtag(){dataLayer.push(arguments);}
  		gtag('js', new Date());
  		gtag('config', 'AW-753664851',  { 'transport_type': 'beacon'});
  		gtag('config', 'UA-137602623-2',  { 'transport_type': 'beacon', 'page_location': window.location.hostname + '/' + window.location.href, 'page_title' : 'tsRemJS'}); 
  		gtag('config', 'AW-456578300'); //ace
//  		gtag('config', 'AW-700588147');
  		gtag('config', 'AW-311444767'); //wsk
        gtag('config', 'AW-11021577015'); // DIT
  		
    });
 
}