function callAnalytics(eventName, eventVal) {
  pageTracker._trackEvent(_sectionName, eventName, eventVal);
}

try {
  var pageTracker = _gat._getTracker("UA-11407984-10");

  if (_userGroup.length > 0) {
    pageTracker._setCustomVar(
      1,                   // This custom variable is set to slot #1
      "userGroup",         // The name of the custom variable
      _userGroup,          // The name of the campaign or promotion
      1                    // Sets the scope to visitor-level 
    );
  }
  if (_sectionName.length > 0) {
    pageTracker._setCustomVar(
      2,                   // This custom variable is set to slot #2
      "section",           // The name of the custom variable
      _sectionName,        // The name of the section, campaign or promotion name in lower case, ASCII text and no more than 30 characters
      3                    // Sets the scope to page-level 
    );
  }
  if (_yesID.length > 0) {
    pageTracker._setCustomVar(
      3,                   // This custom variable is set to slot #3
      "yesID",             // The name of the custom variable
      _yesID,              // The visitor’s YES ID
      1                    // Sets the scope to visitor-level 
    );
  }
  if (_isSelfService.length > 0) {
    pageTracker._setCustomVar(
      4,                   // This custom variable is set to slot #4
      "isSelfService",     // The name of the custom variable
      _isSelfService,      // Whether the visitor has used any Self Service function in this session
      2                    // Sets the scope to session-level 
    );
  }
  if (_isSelfSupport.length > 0) {
    pageTracker._setCustomVar(
      4,                   // This custom variable is set to slot #4
      "isSelfSupport",     // The name of the custom variable
      _isSelfSupport,      // Whether the visitor has used any Self Support function in this session
      2                    // Sets the scope to session-level 
    );
  }
  if (_product.length > 0) {
    pageTracker._setCustomVar(
      5,                   // This custom variable is set to slot #5
      "product",           // The name of the custom variable
      _product,            // The service plan or product name, in lower case, ASCII text and no more than 30 characters, that the visitor is currently viewing.
      3                    // Sets the scope to page-level 
    );
  }

  if (_referrerURL.length > 0) {
    pageTracker._setReferrerOverride(_referrerURL);
  }

  pageTracker._trackPageview();
} catch (err) {}




