function confirmAction(message,action) {
	if (confirm(message)) {
		document.location = action;
	}
}
