// External sites
function leaveSite(url) {
	msg = 'Please note: you are about to leave a King Pharmaceuticals, Inc. web site.  King does not review the information on this web site and/or database for content, accuracy, completeness or compliance with any applicable statute, rule or regulation.  King makes no representation as to the accuracy, completeness or any other aspect of the information contained on such web site and/or database, nor does King necessarily endorse such web site, database and/or content therein.'
  if (confirm(msg)) {
		window.open(url);
	};
}
// King sites
function KingSite(url) {
	window.open(url);
}