function loginOut() {
 $.ajax({
	   type: "POST",
	   url: "/schoollogin.do",
	   data: "action=logout",
	   dataType:"xml",
	   success: function(msg){
		      var page = $(msg).find("page").text();
		      alert($(msg).find("info").text());
		      window.location=page;
	      
    	},
       error: function(msg){
       	 alert("服务器忙，请稍后重试!");
       }
	   }); 
}