	//	Use this function to confirm deletions. It has 3 parameters:
	//		iname:   name of the item to delete (show to the user)
	//		delURL:  URL the client should be redirected to to delete the item
	//		referer: if the delete script supports it, this is the URL the client
	//		         will be redirected to after the item is deleted

function confirmDelete(iname, delURL, referer) {
	if (confirm("Are you sure you wish to delete '" + iname + "'?")) {
		location.href = (delURL + "&referer_page=" + referer);
	}
}
