﻿function doHelp(helpKey, helpWidth, helpHeight)
{
    var oHelp = $get("helpForm");
    
    if (oHelp)
    {
        //while (oHelp.firstChild) oHelp.removeChild(oHelp.firstChild);
        oHelp.style.display = '';
    }
    else
    {
        $("#helpContainer").append("<div id='helpForm'></div>").children("div").css(
            { width: ((parseInt(helpWidth)) ? parseInt(helpWidth) : "350") + "px", height: ((parseInt(helpHeight)) ? parseInt(helpHeight) : "500") + "px" }
        );
        
        $("#helpForm").append("<div class='helpTitle'><h1>系統功能說明</h1><div class='closebtn'><a href='javascript:doHelpClose();' title='關閉「系統功能說明」'></a></div></div>");
        $("#helpForm").append("<div class='helpContent'></div>");
        
        // 透過 JQuery 取得指定頁面
        $.get("/help/" + helpKey + "/" + helpKey + ".htm", function(data) {
            $("div.helpContent").html(data);
        });
        
        // 透過 JQuery 設定拖曳
        $(function(){
            $("#helpForm").draggable({ scroll: true, handle: ".helpTitle" });
        });
    }
}

function doHelpClose()
{
    $("#helpForm").css("display", "none");
}