﻿
function fnPageLoad() 
{
    if ( !fnAppLogined() )
    {    
        fnShowLoginWin();
    }   
}
/**
 * 显示登录窗口
 * var lgInfo = {
 *       lg_UserId     :  fnGetCookie("UserID"),   cookie记录的前次登录的用户
 *       lg_UnitName   :  fnGetCookie("UnitName"), cookie记录的前次登录的单位
 *       lg_UnitId     :  fnGetCookie("UnitID"),   cookie记录的前次登录的单位ID
 *       lg_date       :  fnAjaxGetServiceDate()   取得服务器日期
 * };
 **/
function fnShowLoginWin()
{
    try
    {
        var lgWin = new oLoginWin();
        var lgInfo = {
            lg_UserId     :  fnGetCookie("UserID"),
            lg_UnitName   :  fnGetCookie("UnitName"),
            lg_UnitId     :  fnGetCookie("UnitID"),
            lg_date       :  fnAjaxGetServiceDate()
        };
        lgWin.fnInitFormPanel(lgInfo);
        lgWin.show();
    }catch(err)
    {
        alert(err.msg);
    }
}