function changeProduct (message, url) {
	if (window.confirm(message)) {
		window.location = url;
	}

	return false;
}
