function delete_section(id)
{
	var c=window.confirm("Do you really want to delete this section?");
	if(c)
	{ 
		$.post("controller/sections.php",{type:3,id:id},function(){
			window.alert("Section removed.");
			location.reload();
		});
	}
	return true;
}