dojo.require('pepper.util.OnLeave');

dojo.addOnLoad(function() {
	var productMessage = ([
		'<p>The product-specific Internet site that you have requested is intended for the residents of a particular country or countries,  as noted on that site.</p>',
		'<p>As a result,  the site may contain information on pharmaceuticals,  medical devices and other products or uses of those products that are not approved in other countries or regions. If you are a resident of a country other than those to which the site is directed,  please return to Abbott.com or contact your local Abbott affiliate to obtain the appropriate product information for your country of residence.<p>',
		'<p>Do you wish to continue to this product-specific site?</p>'
	]).join('');
	
	// Attach on-leave dialogs to each product link
	new pepper.util.OnLeave({
		title: 'Exit Abbott.com',
		content: productMessage,
		stay: '<img src="/static/images/no.gif" alt="No" />',
		go: '<img src="/static/images/yes.gif" alt="Yes" />',
		type: 'popup',
        width: 415,
        height: 275,
		query: '#product-supporting-links a',
		hostContains: ['.*']
	});
});

dojo.addOnLoad(function() {
	var familySites = [
		'abbott',
		'AbbottALK',
		'abbottdiabetescare.com',
		'abbottvirology.com',
		'biaxin.com',
		'biaxinxl.com',
		'bodyforlife.com',
		'candowithra.com',
		'cfcareforwardscholarship.com',
		'chad004v5358',
		'continuousmonitor.com',
		'crohnsonline.com',
		'creon.com',
		'creon-us.com',
		'cybergrants.com',
		'depakote.com',
		'diabetescontrolforlife.com',
		'diabetesfreedom.com',
		'diabeteshealthconnection.com',
		'diabetesnow.co.uk',
		'e-mediaroom.com',
		'eas.com',
		'endocrineindia.com',
		'endofacts.com',
		'ensure.com',
		'ensurehealthymom.com',
		'fibroids.info',
		'freestylenavigator.com',
		'glucerna',
		'glucerna-precision.com',
		'glucerna.com',
		'humira.com',
		'i-stat.com',
		'isomiladvance.com',
		'isomiladvancecontest.com',
		'jobs.brassring.com',
		'juven.com',
		'kaletra.com',
		'knowyourhdl.com',
		'knowyourtrigs.com',
		'labsarevital.com',
		'licensing.abbott.com',
		'logaland.is',
		'lupron.com',
		'lupronped.com',
		'medisense.ch',
		'medisense.com',
		'meridia.net',
		'myfreestyle.com',
		'niaspan.com',
		'norvir.com',
		'omnicef.com',
		'omnicefcapsules.com',
		'omnicefforkids.com',
		'onlinewithtmp.com',
		'pediasure.com',
		'pdfgenerator.agendanyc.com',
		'phx.corporate-ir.net',
		'precisionoptiuminfo.com',
		'prevacid.com',
		'prostate.com',
		'prosure.com',
		'ra.com',
		'rpdmail.com',
		'rpdsurveys.com',
		'rxabbott.com',
		'similac',
		'smartmanual.biz',
		'spinalconcepts.com',
		'stepforwardforchildren.org',
		'survanta.com',
		'synthroid.com',
		'tanzaniacare.org',
		'therasense.com',
		'toosoon.com',
		'tricortablets.com',
		'tricorx.com',
		'trilipix.com',
		'urovysion.com',
		'welcomeaddition.com',
		'xiencemediakit.com',
		'xiencev.com',
		'zemplar.com',
		'zoneperfect.com',
		location.hostname
	];
	
	var externalLinkMessage = ([
		'<p>Notice</p>', 
		'<p>The "Yes" link below will take you out of the Abbott Laboratories family of websites.</p>', 
		'<p>Links which take you out of Abbott Laboratories worldwide web sites are not under the control of Abbott Laboratories,  and Abbott Laboratories is not responsible for the contents of any such site or any further links from such site. Abbott Laboratories is providing these links to you only as a convenience,  and the inclusion of any link does not imply endorsement of the linked site by Abbott Laboratories.</p>',
		'<p>Do you wish to leave this site?</p>'
	]).join('');
	
	// Set up the normal on-leave dialog
	new pepper.util.OnLeave({
        id: 'externalSite',
        title: 'You are about to leave for a 3rd party website',
        content: externalLinkMessage,
		stay: '<img src="/static/images/no.gif" alt="No" />',
		go: '<img src="/static/images/yes.gif" alt="Yes" />',
        type: 'popup',
        width: 415,
        height: 350,
        hostLacks: familySites,
		hostContains: ['complyplus.com']
	});
});

