function delete_item(what, where){
	var sMsg = "Are you sure you want to remove this "+what+" ?\n There is no undelete functionality";
	var bReturn = confirm(sMsg);
	if(bReturn)
		location.href=where;
}
