cSlussen = function(){}
cSlussen.prototype = {
    // Current theme
    Theme : "SlussColors2",

    // Show customer details in new window
    oCus_Win : function (kprosAllCusID, kcrmLisID) {
        open("/admin/all/allCustomer_Details_Form.aspx?fromPage=popup&prosAllCusID="+kprosAllCusID+"&crmLisID="+kcrmLisID,
            null, "menubar=no,toolbar=no,width=1000px,height=700px,resizable=yes");
        return false;
    },
    Cus_FRM : function(kprosAllCusID,kcrmLisID, obj){
        top.doNavigate_CrmMaster('_FRM_CrmMaster_Right_Bottom_Default','/admin/all/allCustomer_Details_Form.aspx?prosAllCusID='+kprosAllCusID+"&crmLisID="+kcrmLisID);       
        if (obj && window._SCI_ListsContent_List)
            window._SCI_ListsContent_List._SelectionProcessor(obj, false, kcrmLisID);
    },

    // Show person details in new window
    oPer_Win : function (kprosAllCusID, kprosAllPerID, kcrmLisID) {
        open("/admin/all/allPerson_Details_Form.aspx?fromPage=popup&prosAllPerID="+kprosAllPerID+"&prosAllCusID="+kprosAllCusID+"&crmLisID="+kcrmLisID,
            null, "menubar=no,toolbar=no,width=1000px,height=700px,resizable=yes");
        return false;
    },
    Per_FRM : function (kprosAllCusID, kprosAllPerID,kcrmLisID, obj){
        top.doNavigate_CrmMaster('_FRM_CrmMaster_Right_Bottom_Default','/admin/all/allPerson_Details_Form.aspx?prosAllCusID='+kprosAllCusID+'&prosAllPerID='+kprosAllPerID+"&crmLisID="+kcrmLisID+"");       
        if (obj && window._SCI_ListsContent_List)
            window._SCI_ListsContent_List._SelectionProcessor(obj, false, kcrmLisID);
    },

    
    cusInfo_FRM : function(kprosAllCusID, kcrmLisID, obj){
        top.doNavigate_CrmMaster('_FRM_CrmMaster_Right_Bottom_Default','/admin/crm/crmCustomerInfo_CustomerInfo_List.aspx?prosAllCusID='+kprosAllCusID+"&crmLisID="+kcrmLisID);     
        if (obj && window._SCI_ListsContent_List)
            window._SCI_ListsContent_List._SelectionProcessor(obj, false, kcrmLisID);
    },
   
    Invoice_FRM : function (kprosAllCusID, kcrmLisID, obj){
        top.doNavigate_CrmMaster('_FRM_CrmMaster_Right_Bottom_Default','/admin/finances/admInvoice_CustomerInvoices_List.aspx?prosAllCusID='+kprosAllCusID+"&crmLisID="+kcrmLisID);      
            if (obj && window._SCI_ListsContent_List)
            window._SCI_ListsContent_List._SelectionProcessor(obj, false, kcrmLisID);
    },
   
    Order_FRM : function (kprosAllCusID, kcrmLisID, obj){
        top.doNavigate_CrmMaster('_FRM_CrmMaster_Right_Bottom_Default','/admin/finances/proOrder_CustomerOrder_List.aspx?prosAllCusID='+kprosAllCusID+"&crmLisID="+kcrmLisID);        
        if (obj && window._SCI_ListsContent_List)
            window._SCI_ListsContent_List._SelectionProcessor(obj, false, kcrmLisID);
    },

    oCusUrl : function (url){
        if (url.substr(0,4) != "http")
        url = "http://"+url;
        open(url,"_blank");      
    }
};

// creating instance of cSlussen
JS_S = new cSlussen();




