		function viewUser(){
			$.ajax({
	            url: "viewUser.php",
	            success: function(msg){
	                result = new Function("return " + msg)();
	                if (result.AUTH == 'true'){
	                     $("#receiver_users").html(result.MESSAGE);
	                }else{
	                     $("#boxMESSAGE").text(result.MESSAGE);
	                     showBoxMSG();
	                }
	            }
	        });
		}
		
		function viewGroup(last){
			$.ajax({
	            url: "viewGroup.php",
				type:"POST",
				data:"last=" +last,
	            success: function(msg){ 
	                result = new Function("return " + msg)();
	                if (result.AUTH == 'true'){
						if (last == "true") {
							$("#receiver_updates").html(result.MESSAGE);
						}else{
							$("#receiver_nests").html(result.MESSAGE);
						}
	                }else{
	                     $("#boxMESSAGE").text(result.MESSAGE);
	                     showBoxMSG();
	                }
	            }
	        });
		}