brand.livechat = {
    livechatPopArgs : {
        url: "/includes/live_chat_popup.tmpl",
        resizable: "no",
        scrollbars: "no",
        width: 483,
        height: 409
    },
    init: function() {
        // multiple instances of live chat popup buttons
        brand.livechat.initLiveChatPopup("gnav_popup_live_chat");
        brand.livechat.initLiveChatPopup("popup_live_chat");
        brand.livechat.initLiveChatPopup("popup_live_chat_2"); // if mult links on same page    
    },
    initLiveChatPopup: function(btnId) {
        var params = this.livechatPopArgs;
        params["activator"] = btnId;
        var lc = new generic.popup(params);
    },
    openLiveChatPopup : function() { // for cms inline reference
        var lc = window.open(this.livechatPopArgs.url, 'live_chat',"resizable=0, scrollbars=0, width=" + this.livechatPopArgs.width +", height=" + this.livechatPopArgs.height); 
        generic.events.fire("livepopup:click", {type:"cms"} );

    }  
} 
 
