function new_win(URL) {
	var answer = confirm("You are now leaving First Credit Union's web site.  First Credit Union is not responsible for these sites and their content, which are not maintained or provided by the credit union.")
	if (answer){
		window.open(URL,"popupWindowName");
	}
	else{
		null;
	}
}

function external_win(page) {
    window.open(page,'popupWindowName');
    return false;
}

function MM_openBrWindow(URL) {
  window.open(URL, "win1", "menubar=yes,scrollbars=yes,resizable=yes, width=700, height=600");
  return false;
}
