//launches legal PDFs into a new window, from DePuy's footer menus
function showConsultants() {
     var newWindow = window.open('http://www.depuyorthopaedics.com/Attachment%20Documents/depuydisclosure.pdf');
}
function showDeferredProsecution() {
     var newWindow = window.open('/binary/org/DEPUY/doc/Deferred_pros_agreementDePuyfinal.pdf');
}


function externalLinks_locator() {
	if (!document.getElementsByTagName) {
		return;
	}

	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		
		//anchor.target = "_blank";
		anchor.href="javascript:promptLocator('" + anchor.href + "');";
	}
}

function promptLocator(link) {
	var showLocr = confirm("If you would you like to view your surgeon locator results now, click OK.\n\nOtherwise click Cancel to visit other areas of this website.");
	if (showLocr) {
		//show locator stuff
	link = getLocatorLink();
		
	} else {
	link += (link.indexOf("?") > -1) ? "&" : "?";
	link += "utm_source=KLC&utm_medium=Other&utm_campaign=Cancel";
	}
	window.location=link;
}
function getLocatorLink() {
	var link = "?language=en&country=US&number_of_results_per_page=15&";
	link += "locatorType=&locatorSubmit=true&displayResults=true&";
	link += "geoSearch=1&address=&specialty=" + getURLParam("specialty");
	link += "&city=" + getURLParam("city");
	link += "&state=" + getURLParam("state") + "&zip=";
	link += getURLParam("zip") + "&radius=" + getURLParam("radius");
	link += "&searchType=s&product=" + getURLParam("product");
	link += "&consent=1&page=1";
	link += "&utm_source=KLC&utm_medium=Other&utm_campaign=Ok";
	return link;
}
