<!-- Run this code on view change -->
<script type="text/javascript">
// Specify your data to send here
window.bkDataToSend = function() {
bk_addPageCtx('virtualpagename', '{{DLV_virtualpagename}}');
bk_addPageCtx('virtualpath', '{{DLV_virtualUrl}}')
// Send Data
BKTAG.doTag(69013, 4);
}
// Don't touch this logic
if (!window.BKTAG) {
window.bk_async = function() {
window.bk_allow_multiple_calls = true;
window.bk_use_multiple_iframes = true;
bkDataToSend();
}
} else {
bkDataToSend();
}
</script>
<!-- Run this code on page load -->
<script type="text/javascript">
window.bk_async = function() {
// ALLOW MULTIPLE CALLS/SINGLE PAGE APPS
window.bk_allow_multiple_calls = true;
window.bk_use_multiple_iframes = true;
};
(function() {
var scripts = document.getElementsByTagName('script')[0];
var s = document.createElement('script');
s.async = true;
s.src = "//tags.bkrtx.com/js/bk-coretag.js";
scripts.parentNode.insertBefore(s, scripts);
}());
</script>
<!-- Begin BlueKai Tag -->
<script type="text/javascript">
window.bk_async = function() {
// ALLOW MULTIPLE CALLS/SINGLE PAGE APPS
bk_allow_multiple_calls=true; bk_use_multiple_iframes=true ;
// <optional> PHINTS : Declare variables about this page (or user)
//bk_addPageCtx('pageName', '{{pageName}}'); // uncomment these if you want to use them
//bk_addPageCtx('ANOTHER_PHINT_NAME', '{{ANOTHER GTM VARIABLE}}'); // uncomment these if you want to use them
// Send Data
BKTAG.doTag(69013, 4); // change "ENTER CONTAINER ID HERE" to the container ID/Site ID you want to use
};
(function() {
var scripts = document.getElementsByTagName('script')[0];
var s = document.createElement('script');
s.async = true;
s.src = "//tags.bkrtx.com/js/bk-coretag.js";
scripts.parentNode.insertBefore(s, scripts);
}());
</script>
<!---- End BlueKai Tag -->