function roll(id) {
	$(".fab").hide("slow");
	$("#fab" + id).show("slow");
}
function del(id) {
	if (confirm('Delete this question?')) {
		document.location.href = "?func=delete&id="+id;
	}
}