// disable font metrics
Zw.preventFontMetrics = true;

Zw.capabilities.REQUIRE_MOBILENUMBER_SIGNATURE = true;
Zw.capabilities.EDIT_SELF_PHONE = false;
Zw.capabilities.EDIT_ANY_PHONE = false;
Zw.capabilities.EDIT_SELF = true;
Zw.capabilities.ALLOW_GUEST = false;

Analytics = new Object;
Analytics.MetricData = {};
Analytics.MetricData.appId = "DigLouZW";
/*
 * <<CurrentEnvironmentValue>> should be replaced with a variable that will have a value of
 * dev, test, or prod - which can be determined by the developer
 * "dev" should be used for development purposes
 * "test" should be used for testing prior to production launch
 * "prod" should ONLY be used in the production environment.
 */
switch (Zw.env) {
    case 'dev':
        Analytics.MetricData.currentHost = '144.226.249.20';
        Analytics.MetricData.environment = 'dev';
        break;
    case 'test':
        Analytics.MetricData.currentHost = 'ee.test.sprint.com';
        Analytics.MetricData.environment = 'test';
        break;
    case 'prod':
        Analytics.MetricData.currentHost = 'www.sprint.com';
        Analytics.MetricData.environment = 'prod';
        break;
}

/*
 * Analtyics.MetricData.action must be populated.
 * It will hold a unique identifier for the current page request being made
 * this value should be communicated by Sprint for all potential values that will be set.
 * The values for action should be:
 * 			* TextMessaging - Text Messaging
 */
Analytics.MetricData.action = 'TextMessaging';
Analytics.MetricData.zwSessionId = "";

// sprint omniture tags are crashing the webpage currently.
// disabled until we have time to debug with sprint.
document.write("<script src='//" + Analytics.MetricData.currentHost + "/assets/scripts/analytics/analyticsFramework.js' ><\/script>");

