﻿/* =============================================== */
/*           Google Analytics Activation           */
/* =============================================== */
var DpnInitGATInterval;
var DpnGATTestCounter = 0;
function DpnGATTest()
{
    if (typeof _gat != 'undefined' && _gat != null)
    { 
        DpnInitGAT(); 
        clearInterval(DpnInitGATInterval); 
    }
    else if(DpnGATTestCounter > 15)
    { 
        clearInterval(DpnInitGATInterval); 
    }
    else 
    { 
        DpnGATTestCounter +=1; 
    }
} 

var pageTracker;
var DpnGATTestCounter = 0;
var pageTrackingAccountID;
function DpnInitGAT()
{
    pageTracker = _gat._getTracker(pageTrackingAccountID);
    pageTracker._setDomainName('asdapriceguarantee.co.uk');
    TrackInitUrls();
}

function GATActivation()
{
    DpnInitGATInterval = setInterval('DpnGATTest();',500);
}


