function createCookie(name,value,days){ if (days) { var date = new Date(); date.setTime(date.getTime()+(days*24*60*60*1000)); var expires = "; expires="+date.toGMTString(); } else { var expires = ""; } document.cookie = name+"="+value+expires+"; path=/"; }
function opCreativeSetCookieA(n, v, d, e){var de = new Date;de.setTime(de.getTime() + e*24*60*60*1000);document.cookie = n +
 "=" + escape(v) + ((e==null) ? "" : ("; expires=" + de.toGMTString())) + "; path=/" + ((d==null) ? "" : (";domain=" + d));}
function opCreativeGetDocumentSLD(){var sld = document.domain;var dp = sld.split(".");var l = dp.length;if (l < 2)
sld = null;else if (!isNaN(dp[l-1]) && !isNaN(dp[l-2])) sld = null;else sld = "." + dp[l-2] + "." + dp[l-1];return sld;}
function getCookie(c_name) { if (document.cookie.length>0) { c_start=document.cookie.indexOf(c_name + "="); if (c_start!=-1) { c_start=c_start + c_name.length+1; c_end=document.cookie.indexOf(";",c_start); if (c_end==-1) c_end=document.cookie.length; return unescape(document.cookie.substring(c_start,c_end)); } } return ""; }
function getRefURLparam(name) { var regexS = "[\\?&]"+name+"=([^&#]*)"; var regex = new RegExp( regexS ); var tmpURL = document.referrer; var results = regex.exec( tmpURL ); if( results == null ) return ""; else return results[1]; }

var url = location.href.toLowerCase();
var optrial = new Object();

/* BEGIN Global HHO Flow Test
---------------------------------------------------------------------*/
var enterTest_hhoFlow = false;
var isCatPage = false;
var isCatUpgPage = false;
var flowCounter = true;
var Counter_symnahho_pageview_flow = null;
// opFlow is a bread crumb trail of how the user navigated throughout the test in a sequential manner.
// isCatPage will be true if user is on any of the category pages

function CreateFlowCookie(pagename) { // append page name to opFlow cookie - ignore duplicate entries caused by refreshes
    var name_length = pagename.length;
    var opFlow = getCookie('opFlow');
    if (opFlow.length) {
        var opFlow_last = opFlow.slice(name_length*-1);
        if (opFlow_last != pagename) {
            createCookie('opFlow', opFlow + '_' + pagename, 30);
        }
    } else {
        createCookie('opFlow', pagename, 30);
    }
}

if (url.indexOf('608200') == -1 && url.indexOf('digitalriver.com') == -1 && url.indexOf('nct.symantecstore.com') == -1) { // excluding these
    if (url == 'http://shop.symantecstore.com/' || url.indexOf('displayhomepage') != -1) { // Homepage
        //createCookie('opLastPageViewed', 'h', null);
        //CreateFlowCookie('h');
        enterTest_hhoFlow = true;
    } else if (url.indexOf('displaycategorylistpage') != -1 && url.indexOf('2219900') != -1) { // Category Page - software
        isCatPage = true;
    } else if (url.indexOf('displaycategorylistpage') != -1 && url.indexOf('2222100') != -1) { // Category Page - upgrades
        isCatUpgPage = true;
        isCatPage = true;
    } else if (url.indexOf('displaycategoryproductlistpage') != -1) {
        var catIDs = new Array();
        // Software
        catIDs[0] = '7261900'; // all-in-one
        catIDs[1] = '2220000'; // pc security
        catIDs[2] = '2220200'; // pc tuneup
        catIDs[3] = '2220300'; // backup and restore
        catIDs[4] = '2221800'; // mac
        catIDs[5] = '2451800'; // other
        catIDs[6] = '15956100'; // id protection

        // Upgrades
        catIDs[7] = '7442200'; // all-in-one
        catIDs[8] = '4151800'; // pc security
        catIDs[9] = '4031900'; // pc tuneup
        catIDs[10] = '4032200'; // backup and restore
        catIDs[11] = '4032100'; // mac
        catIDs[12] = '4032000'; // other

        for (x in catIDs) {
            if (url.indexOf(catIDs[x]) != -1) {
                if (x > 6) {
                    isCatUpgPage = true;
                }
                isCatPage = true;
            }
        }
    } else if (url.indexOf('pbpage.nav09wide') != -1) { // NAV PD Page
        //createCookie('opLastPageViewed', 'na', null);
        //CreateFlowCookie('na');
        enterTest_hhoFlow = true;
    } else if (url.indexOf('pbpage.nis09wide') != -1) { // NIS PD Page
        //createCookie('opLastPageViewed', 'ni', null);
        //CreateFlowCookie('ni');
        enterTest_hhoFlow = true;
    } else if (url.indexOf('pbpage.n360v3wide') != -1) { // N360 PD Page
        //createCookie('opLastPageViewed', 'n3', null);
        //CreateFlowCookie('n3');
        enterTest_hhoFlow = true;
    } else if (url.indexOf('qcshoppingcartpage') != -1) { // Shopping Cart Page
        //createCookie('opLastPageViewed', 'ct', null);
        //CreateFlowCookie('ct');
        enterTest_hhoFlow = true;
    } else if (url.indexOf('pbpage.interstitialflow') != -1) { // Interstitial Page
        //createCookie('opLastPageViewed', 'i', null);
        //CreateFlowCookie('i');
        enterTest_hhoFlow = true;
    } else if (url.indexOf('productdeliveryoptionspage') != -1) { // Product Delivery Options Page
        //createCookie('opLastPageViewed', 'do', null);
        //CreateFlowCookie('do');
        enterTest_hhoFlow = true;
    } else if (url.indexOf('thankyoupage') != -1) { // Thank You Page
        //createCookie('opLastPageViewed', 'ty', null);
        //CreateFlowCookie('ty');
        enterTest_hhoFlow = true;
        flowCounter = false;
    } else { // Any other page not listed above
        //createCookie('opLastPageViewed', 'o', null);
        //CreateFlowCookie('o');
        enterTest_hhoFlow = true;
    }
} else { var notest = true; }

if (isCatPage) { // is the page a category page? Then execute test cookie logic like the other pages.
    if (isCatUpgPage) {
        //createCookie('opLastPageViewed', 'o', null);
        //CreateFlowCookie('o');
    } else {
        //createCookie('opLastPageViewed', 'cy', null);
        //CreateFlowCookie('cy');
    }
    enterTest_hhoFlow = true;
}

if (enterTest_hhoFlow) {

    // Portfolio: Default -- Subject: Global HHO Flow Test
    (function(){var _o=ptomodule;_o.U="https://ssl.pto.digitalriver.com/by/trial/399/p/globalhhoflowtest.6a3/112/content.js";
    _o.ST="script";_o.SA={"type":"text/javascript"};_o.B();_o.A["opLastPageViewed"]=_o.C["opLastPageViewed"];
    _o.R(1000,null,null,null);})();

    if (flowCounter) {
        // Counter: symnahho_pageview_flow
        // Referenced context:
        // Cookies: opFlow
        Counter_symnahho_pageview_flow = function() {
            var _o=(typeof opcounter=="object")?opcounter:new Object;_o.D=document;_o.L=_o.D.location;_o.T=
            new Date;_o.Q=new Object;_o.C=new Object;_o.U="https://ssl.pto.digitalriver.com/by/counter/399/-/38/event.js";
            _o.D_ts=Math.round(_o.T.getTime()/1000);_o.D_tzo=_o.T.getTimezoneOffset();_o.D_loc=_o.L.protocol+
            "//"+_o.L.hostname+_o.L.pathname;_o.D_ckl=_o.D.cookie.length;_o.D_ref=_o.D.referrer;function
            _oI(){var s=_o.L.search;var c=_o.D.cookie;if(s.length>3){for(var a=s.substring(1).split("&")
            ,i=0,l=a.length;i<l;i++){var p=a[i].indexOf("=");if(p>0)_o.Q[a[i].substring(0,p)]=unescape(a[i].substring(
            p+1));}}if(c.length>3){for(var a=c.split(";"),i=0,b=a.length;i<b;i++){var v=a[i].split("=");
            while(v[0].substring(0,1)==" ")v[0]=v[0].substring(1,v[0].length);if(v.length==2)_o.C[v[0]]=
            unescape(v[1]);}}}function _oS(){var o=new Object;for(var n in _o)o[n]=_o[n];o.D=o.L=o.T=o.Q=o.C=
            o.U=null;var q='';for(var n in o)if(o[n]!=null && o[n]!="")q+=(q.length>0?"&":(_o.U.indexOf(
            "?")>0?"&":"?"))+n+"="+escape(o[n]);return _o.U+q;}_oI();for(var n in _o.Q)if(n.substring(
            0,2)=="op")_o[n]=_o.Q[n];for(var n in _o.C)if(n.substring(0,2)=="op")_o[n]=_o.C[n];_o.D.write(
            '<'+'script type="text/javascript" src="'+_oS()+'"><\/script>');
        }
    }
}

/* END Global HHO Flow Test
---------------------------------------------------------------------*/


/* BEGIN Re-Targeting Tracking
---------------------------------------------------------------------*/
var enterTest_retargeting = false;
var enterTest_ircRetargeting = false;
var Counter_symnahho_ReTargeting_Counter = null;

function TrackingHandler(source, dropoff) {
    if (source != null) {
        if (!getCookie('oprtSource').length) {
            opCreativeSetCookieA('oprtSource', source, opCreativeGetDocumentSLD(), 90);
        }
    }
    if (dropoff != null) {
        var name_length = dropoff.length;
        var oprtDropoff = getCookie('oprtDropoff');
        if (oprtDropoff.length) {
            var oprtDropoff_last = oprtDropoff.slice(name_length*-1);
            if (oprtDropoff_last != dropoff) {
                opCreativeSetCookieA('oprtDropoff', oprtDropoff + '_' + dropoff, opCreativeGetDocumentSLD(), 90);
            }
        } else {
            opCreativeSetCookieA('oprtDropoff', dropoff, opCreativeGetDocumentSLD(), 90);
        }
    }
}

// Determine what page you are on and create a profile.
if (url.indexOf('608200') == -1 && url.indexOf('digitalriver.com') == -1) { // excluding these
    if (url == 'http://shop.symantecstore.com/' || url.indexOf('displayhomepage') != -1) { // Store Homepage
        //TrackingHandler('store-home', 'st-hp');
        enterTest_retargeting = true;
    } else if (url.indexOf('pbpage.nav09wide') != -1) { // Store NAV PD Page
        //TrackingHandler('store-nav', 'st-nav');
        enterTest_retargeting = true;
    /*} else if (url.indexOf('572050/navnis09_360v3_us.html') != -1) { // Paid Search Page
        TrackingHandler('ps-3up', 'ps-3up');
        enterTest_retargeting = true;
    } else if (url.indexOf('567173_Trial.html') != -1) { // Paid Search Page
        TrackingHandler('ps-trial', 'ps-trial');
        enterTest_retargeting = true;
    } else if (url.indexOf('579929/navnis09_360v3_us_2.html') != -1) { // Display Ad Landing Page
        TrackingHandler('organic-3up', 'organic-3up');
        enterTest_retargeting = true;
    } else if (url.indexOf('pbpage.display-nav') != -1) { // Display Ad Landing Page
        TrackingHandler('organic-nav', 'organic-nav');
        enterTest_retargeting = true;*/
    } else if (url.indexOf('qcshoppingcartpage') != -1) { // Cart Page
        if (getCookie('symanhho_stid').length) { // Did they reach a paid search lp?
            //TrackingHandler(null, 'ps_sc');
        } else {
            //TrackingHandler(null, 'sc');
        }
        enterTest_retargeting = true;
    } else if (url.indexOf('thankyoupage') != -1) { // Thank You Page
        //TrackingHandler(null, 'ty');
        enterTest_retargeting = true;
    } else if (url.indexOf('displayupgradepage') != -1) { // Renewal Center Page
        enterTest_ircRetargeting = true;
    }
}

if (typeof(ptomodule) == 'object') {
    ptomodule.I(); // re-capture newly created cookies so ensure correct persona decisions are made
}

if (enterTest_retargeting && !getCookie('op399symnahhorenewalcenterre-targetinliid')) {

    // Portfolio: Default -- Subject: Global Re-Targeting
    (function(){var _o=ptomodule;_o.U="https://ssl.pto.digitalriver.com/by/trial/399/p/globalre-targeting.f70/115/content.js";
    _o.ST="script";_o.SA={"type":"text/javascript"};_o.B();_o.A["oprtDropoff"]=_o.C["oprtDropoff"];_o.A["oprtSource"]=
    _o.C["oprtSource"];_o.A["optest"]=_o.C["optest"];_o.R(1000,null,null,null);})();

    Counter_symnahho_ReTargeting_Counter = function() {
        /* BEGIN Counter: symnahho Re-Targeting Counter
            Referenced context:
            - Cookies: oprtDropoff, oprtSource
            - JavaScript variables: ot_orderTotal
            Modified: The counter was last modified 2009-04-10 18:34 GMT.
            Note: This script should be included in a secure (https) page.
        -----------------------------------------------------------------*/
        var _o=(typeof opcounter=="object")?opcounter:new Object;_o.D=document;_o.L=_o.D.location;_o.T=
        new Date;_o.Q=new Object;_o.C=new Object;_o.U="https://ssl.pto.digitalriver.com/by/counter/399/-/47/event.js";
        _o.D_ts=Math.round(_o.T.getTime()/1000);_o.D_tzo=_o.T.getTimezoneOffset();_o.D_loc=_o.L.protocol+
        "//"+_o.L.hostname+_o.L.pathname;_o.D_ckl=_o.D.cookie.length;_o.D_ref=_o.D.referrer;function
        _oI(){var s=_o.L.search;var c=_o.D.cookie;if(s.length>3){for(var a=s.substring(1).split("&")
        ,i=0,l=a.length;i<l;i++){var p=a[i].indexOf("=");if(p>0)_o.Q[a[i].substring(0,p)]=unescape(a[i].substring(
        p+1));}}if(c.length>3){for(var a=c.split(";"),i=0,b=a.length;i<b;i++){var v=a[i].split("=");
        while(v[0].substring(0,1)==" ")v[0]=v[0].substring(1,v[0].length);if(v.length==2)_o.C[v[0]]=
        unescape(v[1]);}}}function _oS(){var o=new Object;for(var n in _o)o[n]=_o[n];o.D=o.L=o.T=o.Q=o.C=
        o.U=null;var q='';for(var n in o)if(o[n]!=null && o[n]!="")q+=(q.length>0?"&":(_o.U.indexOf(
        "?")>0?"&":"?"))+n+"="+escape(o[n]);return _o.U+q;}_oI();for(var n in _o.Q)if(n.substring(
        0,2)=="op")_o[n]=_o.Q[n];for(var n in _o.C)if(n.substring(0,2)=="op")_o[n]=_o.C[n];_o["ot_orderTotal"]=
        (typeof ot_orderTotal!="undefined")?ot_orderTotal:null;_o.D.write('<'+'script type="text/javascript" src="'+
        _oS()+'"><\/script>');

        /* END Counter: symnahho Re-Targeting Counter
        -----------------------------------------------------------------*/
    }
} else if (enterTest_ircRetargeting && !getCookie('op399globalre-targetingliid')) {
    // Portfolio: Default -- Subject: symnahho Renewal Center Re-Targeting
    (function(){var _o=ptomodule;_o.U="http://pto.digitalriver.com/trial/399/p/symnahhorenewalcenterre-targetin/119/content.js";
    _o.ST="script";_o.SA={"type":"text/javascript"};_o.B();_o.R(1000,null,null,null);})();
}

/* END Re-Targeting Tracking
---------------------------------------------------------------------*/


/* BEGIN Global IRC Flow Test
---------------------------------------------------------------------*/
var enterTest_ircFlow = false;
var Counter_symnahho_IRCflow = null;
function CreateIRCflowCookie(pagename) { // append page name to opIRCflow cookie - ignore duplicate entries caused by refreshes
    var name_length = pagename.length;
    var opIRCflow = getCookie('opIRCflow');
    if (opIRCflow.length) {
        var opIRCflow_last = opIRCflow.slice(name_length*-1);
        if (opIRCflow_last != pagename) {
            createCookie('opIRCflow', opIRCflow + '_' + pagename, null);
        }
    } else {
        createCookie('opIRCflow', pagename, null);
    }
}

if (url.indexOf('608200') == -1 && url.indexOf('digitalriver.com') == -1) { // excluding these
    if (url.indexOf('displayupgradepage') != -1) { // Renewal Center Page
        var arrPGM = new Array();
        // upgrade pgm's
        arrPGM[0] = '23104500';
        arrPGM[1] = '13133900';
        arrPGM[2] = 'tracking_id.upgrade';
        // renew pgm's
        arrPGM[3] = '23104600';
        arrPGM[4] = '13133800';
        arrPGM[5] = 'tracking_id.renew';

        if (!getCookie('opIRCpgm')) {
            for (x in arrPGM) {
                if (url.indexOf(arrPGM[x]) != -1) {
                    opCreativeSetCookieA('opIRCpgm', arrPGM[x], opCreativeGetDocumentSLD(), null);
                    CreateIRCflowCookie('irc');
                    enterTest_ircFlow = true;
                    break;
                } else {
                    enterTest_ircFlow = false;
                }
            }
        } else {
            CreateIRCflowCookie('irc');
            enterTest_ircFlow = true;
        }
    } else if (getCookie('opIRCpgm')) {
        if (url.indexOf('displayrenewalupgradecenterpage') != -1) { // Compare Options Page
            if (url.indexOf('106211700') != -1 || url.indexOf('106224900') != -1 || url.indexOf('103383300') != -1) {
                enterTest_ircFlow = true;
                Counter_symnahho_IRCflow = 'co';
                CreateIRCflowCookie('co');
            }
        } else if (url.indexOf('qcshoppingcartpage') != -1) { // Shopping Cart Page
            Counter_symnahho_IRCflow = 'sc';
            CreateIRCflowCookie('sc');
        } else if (url.indexOf('pbpage.interstitialirc') != -1) {
            enterTest_ircFlow = true;
            Counter_symnahho_IRCflow = 'i';
            CreateIRCflowCookie('i');
        }
    }
}

if (typeof(ptomodule) == 'object') {
    ptomodule.I(); // re-capture newly created cookies so ensure correct persona decisions are made
}

if (enterTest_ircFlow) {
    // Portfolio: Default -- Subject: symnahho Global IRC Flow Test
    (function(){var _o=ptomodule;_o.U="https://ssl.pto.digitalriver.com/by/trial/399/p/symnahhoglobalircflowtest.3b4/123/content.js";
    _o.ST="script";_o.SA={"type":"text/javascript"};_o.B();_o.R(1000,null,null,null);})();
}

if (Counter_symnahho_IRCflow != null) {
    switch (Counter_symnahho_IRCflow) {
        case 'co':
            /*
            Counter: symnahho ircflow compare-options-page
                Referenced context:
                - Cookies: op399symnahhoglobalircflowtestliid
                Modified: The counter was last modified 2009-05-05 15:00 GMT.
                Note: This script should be included in a secure (https) page.
            */
            Counter_symnahho_IRCflow = function() {
                var _o=(typeof opcounter=="object")?opcounter:new Object;_o.D=document;_o.L=_o.D.location;_o.T=
                new Date;_o.Q=new Object;_o.C=new Object;_o.U="https://ssl.pto.digitalriver.com/by/counter/399/-/56/event.js";
                _o.D_ts=Math.round(_o.T.getTime()/1000);_o.D_tzo=_o.T.getTimezoneOffset();_o.D_loc=_o.L.protocol+
                "//"+_o.L.hostname+_o.L.pathname;_o.D_ckl=_o.D.cookie.length;_o.D_ref=_o.D.referrer;function
                _oI(){var s=_o.L.search;var c=_o.D.cookie;if(s.length>3){for(var a=s.substring(1).split("&")
                ,i=0,l=a.length;i<l;i++){var p=a[i].indexOf("=");if(p>0)_o.Q[a[i].substring(0,p)]=unescape(a[i].substring(
                p+1));}}if(c.length>3){for(var a=c.split(";"),i=0,b=a.length;i<b;i++){var v=a[i].split("=");
                while(v[0].substring(0,1)==" ")v[0]=v[0].substring(1,v[0].length);if(v.length==2)_o.C[v[0]]=
                unescape(v[1]);}}}function _oS(){var o=new Object;for(var n in _o)o[n]=_o[n];o.D=o.L=o.T=o.Q=o.C=
                o.U=null;var q='';for(var n in o)if(o[n]!=null && o[n]!="")q+=(q.length>0?"&":(_o.U.indexOf(
                "?")>0?"&":"?"))+n+"="+escape(o[n]);return _o.U+q;}_oI();for(var n in _o.Q)if(n.substring(
                0,2)=="op")_o[n]=_o.Q[n];for(var n in _o.C)if(n.substring(0,2)=="op")_o[n]=_o.C[n];_o.D.write(
                '<'+'script type="text/javascript" src="'+_oS()+'"><\/script>');
            }
            break;

        case 'sc':
            /*
            Counter: symnahho ircflow shopping-cart-page
                Referenced context:
                - Cookies: op399symnahhoglobalircflowtestliid
                Modified: The counter was last modified 2009-05-05 15:02 GMT.
                Note: This script should be included in a secure (https) page.
            */
            Counter_symnahho_IRCflow = function() {
                var _o=(typeof opcounter=="object")?opcounter:new Object;_o.D=document;_o.L=_o.D.location;_o.T=
                new Date;_o.Q=new Object;_o.C=new Object;_o.U="https://ssl.pto.digitalriver.com/by/counter/399/-/57/event.js";
                _o.D_ts=Math.round(_o.T.getTime()/1000);_o.D_tzo=_o.T.getTimezoneOffset();_o.D_loc=_o.L.protocol+
                "//"+_o.L.hostname+_o.L.pathname;_o.D_ckl=_o.D.cookie.length;_o.D_ref=_o.D.referrer;function
                _oI(){var s=_o.L.search;var c=_o.D.cookie;if(s.length>3){for(var a=s.substring(1).split("&")
                ,i=0,l=a.length;i<l;i++){var p=a[i].indexOf("=");if(p>0)_o.Q[a[i].substring(0,p)]=unescape(a[i].substring(
                p+1));}}if(c.length>3){for(var a=c.split(";"),i=0,b=a.length;i<b;i++){var v=a[i].split("=");
                while(v[0].substring(0,1)==" ")v[0]=v[0].substring(1,v[0].length);if(v.length==2)_o.C[v[0]]=
                unescape(v[1]);}}}function _oS(){var o=new Object;for(var n in _o)o[n]=_o[n];o.D=o.L=o.T=o.Q=o.C=
                o.U=null;var q='';for(var n in o)if(o[n]!=null && o[n]!="")q+=(q.length>0?"&":(_o.U.indexOf(
                "?")>0?"&":"?"))+n+"="+escape(o[n]);return _o.U+q;}_oI();for(var n in _o.Q)if(n.substring(
                0,2)=="op")_o[n]=_o.Q[n];for(var n in _o.C)if(n.substring(0,2)=="op")_o[n]=_o.C[n];_o.D.write(
                '<'+'script type="text/javascript" src="'+_oS()+'"><\/script>');
            }
            break;

        case 'i':
            /*
            Counter: symnahho ircflow interstitial-page
                Referenced context:
                - Cookies: op399symnahhoglobalircflowtestliid
                Modified: The counter was last modified 2009-05-05 15:04 GMT.
                Note: This script should be included in a secure (https) page.
            */
            Counter_symnahho_IRCflow = function() {
                var _o=(typeof opcounter=="object")?opcounter:new Object;_o.D=document;_o.L=_o.D.location;_o.T=
                new Date;_o.Q=new Object;_o.C=new Object;_o.U="https://ssl.pto.digitalriver.com/by/counter/399/-/58/event.js";
                _o.D_ts=Math.round(_o.T.getTime()/1000);_o.D_tzo=_o.T.getTimezoneOffset();_o.D_loc=_o.L.protocol+
                "//"+_o.L.hostname+_o.L.pathname;_o.D_ckl=_o.D.cookie.length;_o.D_ref=_o.D.referrer;function
                _oI(){var s=_o.L.search;var c=_o.D.cookie;if(s.length>3){for(var a=s.substring(1).split("&")
                ,i=0,l=a.length;i<l;i++){var p=a[i].indexOf("=");if(p>0)_o.Q[a[i].substring(0,p)]=unescape(a[i].substring(
                p+1));}}if(c.length>3){for(var a=c.split(";"),i=0,b=a.length;i<b;i++){var v=a[i].split("=");
                while(v[0].substring(0,1)==" ")v[0]=v[0].substring(1,v[0].length);if(v.length==2)_o.C[v[0]]=
                unescape(v[1]);}}}function _oS(){var o=new Object;for(var n in _o)o[n]=_o[n];o.D=o.L=o.T=o.Q=o.C=
                o.U=null;var q='';for(var n in o)if(o[n]!=null && o[n]!="")q+=(q.length>0?"&":(_o.U.indexOf(
                "?")>0?"&":"?"))+n+"="+escape(o[n]);return _o.U+q;}_oI();for(var n in _o.Q)if(n.substring(
                0,2)=="op")_o[n]=_o.Q[n];for(var n in _o.C)if(n.substring(0,2)=="op")_o[n]=_o.C[n];_o.D.write(
                '<'+'script type="text/javascript" src="'+_oS()+'"><\/script>');
            }
            break;
    }
}
/* END Global IRC Flow Test
---------------------------------------------------------------------*/

/* BEGIN Writing Counters
    Counter code needs to be put into a function and wrapped around another document.write to ensure the counter fires after the trial code.
---------------------------------------------------------------------*/

document.write('<' + 'script src="//drh.img.digitalriver.com/DRHM/Storefront/Site/symnahho/pb/multimedia/SiteOpt/flowcounter.js"></' + 'script>');

/* END Writing Counters
---------------------------------------------------------------------*/

/* BEGIN Tracking (SR 300025902) *************************************/

if (url.indexOf('displayhomepage') != -1 || url == 'http://shop.symantecstore.com/') {
    optrial.pageName = 'home';
} else if (url.indexOf('displayupgradepage') != -1) {
    optrial.pageName = 'irc';
}

/*
Portfolio: Default
Subject: GLOBAL symnahho Tracking
Trial: Trial 1
Referenced context:
- JavaScript variables: optrial.pageName, optrial.sticky
Note: This code should be included in a secure (https) page.
*/
(function(){var _o=ptomodule;_o.U="https://ssl.pto.digitalriver.com/by/trial/399/p/globalsymnahhotracking.601/154/content.js";
_o.ST="script";_o.SA={"type":"text/javascript"};_o.B();_o.A["optrial.pageName"]=(typeof optrial.pageName!=
"undefined")?optrial.pageName:null;_o.R(1000,null,null,null);})();

/* END Tracking (SR 300025902) ***************************************/

/* BEGIN Geographic Tracking (SR 300025901) **************************/

if (url.indexOf('displayhomepage') != -1 || url == 'http://shop.symantecstore.com/' || url.indexOf('displayupgradepage') != -1) {

    /*
    Portfolio: Default
    Subject: GLOBAL symnahho Geographic Tracking
    Trial: Trial 1
    Referenced context:
    - JavaScript variables: optrial.sticky
    Note: This code should be included in a secure (https) page.
    */
    (function(){var _o=ptomodule;_o.U="https://ssl.pto.digitalriver.com/by/trial/399/p/globalsymnahhogeographictracking/156/content.js";
    _o.ST="script";_o.SA={"type":"text/javascript"};_o.B();_o.R(1000,null,null,null);})();

}

/* END Geographic Tracking (SR 300025901) ****************************/