// JavaScript Document

function linkAlertJS(url) {
	if (confirm('You have just clicked on a link that will take you from the Boston Scientific website to another site.\n\nBoston Scientific 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 the privacy policy, of the linked site.')) {
	location.href=url;
	}
} 

function popWin(path,h,w) {
	var attrib = "menubar,scrollbars,resizable,locationbar=no,statusbar=no,left=10,top=10,height=" + (h+20) + ",width=" + (w+18);
	window.open(path,'',attrib);
}

function openStream(num) {
	var url = "http://reflectweb.reflectsystems.com/getContent.aspx?Action=Factory&FileName=guidant/frame.htm&WCID=" + num;
	var xpos=(screen.width-423)/2;
	var ypos=(screen.height-266)/2;
	window.open(url,"","width=423,height=266,screenX=0,screenY=0,top=" + ypos + ",left=" + xpos);
}
