/*function badgeconfirm () {
	var badge = confirm("Have you customized your Family Disaster Plan?  If so, click OK to place a Mom Brigade Badge on your website.  If not, click CANCEL to customize your Disaster Family Plan now.");
	if ( badge ) {
		window.location = "badge.html";
	} else {
		window.location = "plan.html";
	}
}*/

var win = null;
function badgeconfirm() {
	windowwidth = 420;
	windowheight = 225;
	LeftPosition = (screen.width-windowwidth)/2;
	TopPosition = (screen.height-windowheight)/2;
	window.open('badgeconfirm.html','BadgeConfirm','left=' + LeftPosition + ',top=' + TopPosition + ',scrollbars=no,resizable=no,width=' + windowwidth + ',height=' + windowheight + 'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no' );
}

