﻿/********************
 This script is relevant with the scope of HCO_Web_Page .NET base page.  It is registered by the base page
 and then the HCO_Web_Page.BaseStartup() method is executed as a started script.  Files included using the 
 Framework will be included in every page that inherits from HCO_Web_Page.  Any code within the 
 HCO_Web_Page.BaseStartup() function will get executed at startup of any page that inherits from HCO_Web_Page.
*******************/
Framework.IncludeJavaScript("/Client/Javascript/Library/PixelTrackingHelper.js");
var HCO_Web_Page = {
    BaseStartup:function() {
    PixelTrackingHelper.InitializeOutsideLinks();
    }
};