// JavaScript Document

function confirmAction(action, location) {
	//var answer = confirm("Are you sure you want to " + action + "?");
	var answer = confirm(action);
	if (answer) {
		window.location = location;
	}
}
