﻿//中英文切换
function chang(en)
{
    $.post("/inc/cookie.aspx", {lang:en},
    function(data){
        window.location.reload();
    });
}