﻿function leaving_the_site_popup() {
    return confirm("You are now leaving " + document.domain + ". Content and information viewed on external links is the sole responsibility of the site provider and not of Dairy Management, Inc.");
}

function set_popup_handler() {
	for (var i = 0; i < document.links.length; i++) {
	    if (document.links[i].hostname.toLowerCase() != document.domain.toLowerCase() &&
	  	   (document.links[i].protocol.toLowerCase() == 'http:' || document.links[i].protocol.toLowerCase() == 'https:') &&
	  		document.links[i].tagName.toLowerCase() == 'a')

	        if (document.links[i].onclick == null) {
	            document.links[i].onclick = leaving_the_site_popup
	        }
	}
}