function tgRem () {
    function loadScriptAsyncy(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);
    } 

    loadScriptAsyncy("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' : 'pcRemJS'}); 
  		gtag('config', 'AW-311444767'); //wsk
        gtag('config', 'AW-11021577015'); // DIT
        gtag('config', 'AW-11140859820');   
        gtag('config', 'G-LFF2PYJD11',  { 'page_location': window.location.hostname + '/' + window.location.href, 'page_title' : 'pcRemJS'}); 
    });
    
}