// JavaScript For External Non-BMS links
function externallink(URL)
{
var r=confirm("You are about to leave the Bristol-Myers Squibb DestinationAccess.com site. The site you are linking to is not controlled or endorsed by Bristol-Myers Squibb and we are not responsible for the content provided on that site. Your linking to any other off-site pages or other sites is at your own risk.");
if (r==true)
  {
	// open the window
win1 = window.open("", "Window1","resizable=1,status=1,menubar=1,toolbar=1,scrollbars=1,width=860,height=600,top=100,left=100");

// write to window
win1.document.location.href = URL;
  }
else
  {
  false;
  }
  
}