// Open external link in new window
$(document).ready( function() {
	
	$('a[rel="external"]').click( function() {
		
		var ans = confirm ("You are leaving a website managed by Bristol-Myers Squibb.\n\nBristol-Myers Squibb is not responsible for any content provided on external websites.\n\nClick 'Ok' if you wish to continue to this website.");
		
		if ( ans ) {
			window.open( $(this).attr('href') );
			return false;
		}
		else
			return false;
	});
	
	
	
	// Google custom search
	var HE = $('iframe').height();
	
	if ($.browser.opera) {
		$('iframe').css({
			"height" : HE - 481 + "px"
		});
	}
	
	if ($.browser.safari) {
		$('iframe').css({
			"height" : HE - 481 + "px"
		});
	}
	
	//alert(HE);
	
});
