function confirmaction(confirmmsg, url) {
	if (confirm(confirmmsg)) {
		location.href = url;
	}
	return false;
}
