﻿$(document).ready(function(){

    if($.cookie('Admin')==null)
    {
        $('body').html("您无权访问此页！");
        return false;
    }
});
