﻿// JScript File
function doBridgeTrack(btId)
{
    // do BT only for the live sapient.com site
    //if(document.location.href.toLowerCase().indexOf('sapient.com') != -1)
    //{
        var szProtocol = window.location.protocol;  // script on page load
        var szRandom = Math.random() * 1000000;
        var i = document.createElement('img');
		i.src = szProtocol + '//ads.bridgetrack.com/track/?id=' + btId + '&r=' + szRandom;
    //}
}


