function remove_item(url){
	
	var confirm_delete = confirm("You are about to remove this item permanantly.  Press OK to continue, or cancel to go back.");
	
	if(confirm_delete === true){
	
		window.location = url;
	
	}

}
