/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function putout(path,index,userid){
    if (userid=="null"||userid===""){
        alert("您还没有登录！");
        window.location.href=index+"login.jsp";
    }else{
        window.location.href=path+"corporation/manager_person.jsp";
    }
}


