function login(){
	 mybox = $.weeboxs.open('/home/login', {contentType: 'ajax', title: '用戶登入', width: 400, type: 'dialog', showButton: false });
}

function atfpmLogin(){
	 mybox = $.weeboxs.open('/home/atfpm_login', {contentType: 'ajax', title: '用戶登入', width: 400, type: 'dialog', showButton: false });
}

//设为首页
function SetHome(url){
       url=window.location.href;
        try{
                obj.style.behavior='url(#default#homepage)';
                obj.setHomePage(url);
        }
        catch(e){
                if(window.netscape) {
                        try {
                                netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
                        }
                        catch (e) {
                                alert("此操作被浏览器拒绝！\n请在浏览器地址栏输入“about:config”并回车\n然后将 [signed.applets.codebase_principal_support]的值设置为'true',双击即可。");
                        }
                        var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components.interfaces.nsIPrefBranch);
                        prefs.setCharPref('browser.startup.homepage',url);
                 }
        }
}
//添加到收藏夹
function AddFavorite(user)
{

    try
    {
        window.external.addFavorite(window.location.href, user);
    }
    catch (e)
    {
        try
        {
            window.sidebar.addPanel(user, window.location.href, "");
        }
        catch (e)
        {
            alert("加入收藏失败，请使用Ctrl+D进行添加");
        }
    }
}


