function confirmation(url) {

var answer = confirm("You are now leaving the Quest Diagnostics web site.  Quest Diagnostics does not control the site you are about to enter and accepts no responsibility for its content.")
if (answer){

var WinTest = window.open(url);
  if (! WinTest) {
   window.location.href=url;
	}

}
else{

}
}
