dojo.require('pepper.util.OnLeave');

dojo.addOnLoad(function() {
    // onLeave popup
    var familySites = [
        'abbott.com', 'abbottcore', 'clara.abbott.com', 'abbott-ir.com', 'abbottstore.com',
		'securedata-trans9.com', 'easymatch.com', 'abbott.perkspot.com'
    ];

    var externalLinkMessage = ([
        '<p>Abbott does not endorse or recommend any supplier. All determination of suitability and decisions to purchase a product or service via this program reside solely with the retiree. Abbott shall not be a party to any transaction between a retiree and the supplier.</p>',
        '<p>These products and services are subject to change without notice. Please contact the supplier to confirm availability.</p>',
        '<p>Do you wish to continue to this site?</p>'
    ]).join('');

    var baseURL = 'http://' + document.domain + '/';

    // Set up the normal on-leave dialog
    ol = new pepper.util.OnLeave({
        content: externalLinkMessage,
        hostLacks: familySites,
        title: 'Exit AbbottCore.com',
        type: 'popup',
        width: 420,
        height: 280,
        stay: '<img src="' + (dojo.isIE && dojo.isIE < 8 ? baseURL : '') + '/static/images/no.gif"/>',
        go: '<img src="' + (dojo.isIE && dojo.isIE < 8 ? baseURL : '') + '/static/images/yes.gif"/>',
        newWindow: true
    });
});


