//<!--
//--------------------------------------------------
function delete_item(page) {
	var conf = confirm("Delete this item from the database?");
	if (conf)
		document.location.href = page;
}
//--------------------------------------------------
function activate_item(page) {
	var conf = confirm("Do you wish to activate this member?");

	if (conf)
		document.location.href = page;
}
//--------------------------------------------------
//-->