﻿// JScript File

function popup(filename) {
		
var pWindow=window.open(filename,'filename','width=335,height=375,scrollbars=no,location=no,menubar=no,toolbar=no,resizable=no,status=no,locationbar=no');
pWindow.focus();
		
}

function externalLinkConfirm(linkURL) {

	var r=confirm("You have just clicked on a link that will take you from the Organogenesis website to another site." + '\n' + '\n' + "Organogenesis does not review or monitor the content on the linked site and is not responsible for any communication or transactions you might have with them. Your use of the linked site is subject to the terms and conditions, including privacy policy, of the linked site.");

	if (r==true) {
	window.open(linkURL);
	}

	else {
	}
	
}	


