// redirect.js

// newFunction
function confirmSurvey() {
	if (confirm("This link will take you to our survey site.  Are you sure you would like to exit SHOPNSAVE.com?")) {
		window.location.href = "http://www.surveymonkey.com/";
	}
}