function confirmdelete(delUrl) {
	if (confirm("Are you sure?")) {
		document.location = delUrl;
	}
}