function verifyUpdate(action,url) {
	if (confirm("Are you sure you want to " + action + "?")) {
		document.location = url;
	}
}