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' : 'lrRemJS'}); 
  		gtag('config', 'AW-456578300');
  		gtag('config', 'AW-700588147');
  		gtag('config', 'AW-311444767');
  		gtag('config', 'AW-668877205');
  		gtag('config', 'AW-10828766220');
  		gtag('config', 'AW-668474013');
  		
    });
 
}