//--------------------------------------------------------------------------
// File:     clcCustomers.js
// Purpose:  Contains the list of enrolled customers and defines the
//           appropriate information for each.
// Owner:    Mal Greenberg, LSR Publishing Group, Inc.
// Author:   Gary Richtmeyer, C&G Web Enterprises, gary@CandGWeb.com
//--------------------------------------------------------------------------
// 2006-04-19 GLR - Initial definitions (including dummy entries)
//--------------------------------------------------------------------------



//--------------------------------------------------------------------------
// Overall System Parameters
//--------------------------------------------------------------------------
// The "UnknownCustomerFile" parameter specifies the HTML file to display
// if an unknown customer code is specified (or if no customer code is provided
// at all).
        UnknownCustomerFile = "clcUnknownCustomer.htm"



//--------------------------------------------------------------------------
// Default values for various customer-specific parameters
//--------------------------------------------------------------------------
// The following statements specify default values for most of the parameters
// that can be specified for a particular customer (see "Customer Definitions"
// in the next section.

// Default value for "ClientMenuFile" if not specified for a customer
        DefaultValue("ClientMenuFile", "clientmenus/menuclient1001.htm")

// Default value for "CloseAction" if not specified for a customer
        DefaultValue("CloseAction", "CLOSE")

// Default value for "FeedbackEmail" if not specified for a customer
        DefaultValue("FeedbackEmail", "clc@lsrgroup.net")

// Default value for "HeaderFile" if not specified for a customer
        DefaultValue("HeaderFile", "Header/client_headers/clcHeaderDefault.htm")

// Default value for "HeaderFileText" if not specified for a customer
        DefaultValue("HeaderFileText", "")

// Default value for "IntroFile" if not specified for a customer
        DefaultValue("IntroFile", "startfiles/intro.htm")

// Default value for "Suspended" if not specified for a customer
        DefaultValue("Suspended", "NO")

// Default value for "SuspendedFile" if not specified for a customer
        DefaultValue("SuspendedFile", "clcSuspendedCustomer.htm")



//--------------------------------------------------------------------------
// Customer Definitions
//
// This section defines the customers that have signed up.  The following
// syntax is used to define the values for a valid customer ID:
//
//    Customer("customerid",
//             "parameter1=value1",
//             "parameter2=value2",
//             "parameter3=value3",
//                 ...       ...
//                 ...       ...
//             "parameterX=valueX")
//
// "customerid" is a unique identifier associated with a particular customer and
// can be any combination of numbers or letters (upper/lower case is ignored).
//
// None, one or many parameters may be specified.  Each parameter consists
// of the parameter's name and the data for the parameter.  The "case" of the
// parameter's name is ignored.
//
//--------------------------------------------------------------------------
//
// The following parameters specify general information about the customer:
//
//   "NAME=name of the customer"
//
//   "ADDR=customer address"                           (not currently used)
//
//   "PHONE=customer phone number"                     (not currently used)
//
//   "KEYCODE=PShop 101 keycode cookie value"          (not currently used)
//
//
//--------------------------------------------------------------------------
//
// The following parameters define the appearance and links on the web page.
// If a particular parameter is omitted for a customer, the parameter's
// default value (as specified in the previous section above) is used.
//
//   "ClientMenuFile=name-of-navigation-HTML-file"
//        The name of the web page containing the client's navigation
//        menu in the middle left frame.
//
//   "CloseAction=url-of-web-page"   (or)
//   "CloseAction=CLOSE"
//        This specifies what should be done when the customer clicks
//        the "CLOSE" button.  If "CLOSE" is specified, the user is directed
//        to close the window, otherwise the user's browser is sent to the
//        specified URL address.
//
//   "FeedbackEmail=email-address"
//        Email address where Feedbacks entered by the customer should be sent.
//
//   "HeaderFile=name of customer header HTML file"
//        The name of the web page containing customer header for the
//        top-right frame.
//
//   "HeaderFileText=HTML-text-describing-the-customer"
//        If the HTML file specified for the "HeaderFile" parameter
//        allows dynamic text, this parameter specifies that text.
//
//   "IntroFile=name-of-main-HTML-file"
//        This is the name of the web page to display in the primary frame.
//
//   "Suspended=YES" (or)
//   "Suspended=NO"
//        Is this customer suspended?  If YES, then the file specified
//        for "SuspendedFile" is displayed.
//
//   "SuspendedFile=name-of-HTML-file"
//        This is the name of the web page to show if the customer is suspended.
//
//
// Example:
//   Customer("TPAP01",
//            "NAME=Tampa Bay Printers",
//            "CLOSEACTION=http://www.tampabayprinters.com/clc")
//
//--------------------------------------------------------------------------
// Audit Trail:
//   2006-01-29 GLR - Initial definition
//   2006-04-11 GLR - Change for new and updated parameters;
//                    New method of specifying default values
//--------------------------------------------------------------------------



//--------------------------------------------------------------------------
// Define the subscribed customers (see this file's header for more info)
Customer("demo001",
     "Name=LSR Publishing Group, Inc.",
     "ClientMenuFile=clientmenus/menuclientdemo.htm",
     "CLOSEACTION=http://www.clclive.com")

Customer("1001",
     "Name=LSR Publishing Group, Inc.",
     "CLOSEACTION=http://www.printshop101.com")

Customer("sirspeedy0323",
     "Addr=613 W. Stadium Lane, Sacramento, CA 95834",
     "Name=Sir Speedy.",
     "HeaderFile=Header/client_headers/ss0323.htm",
     "CLOSEACTION=http://www.sirspeedy0323.com")

Customer("ccc",
     "Addr=11406-C North Dale Mabry Hwy • Tampa, FL 33618",
     "Name=Carrollwood Copy Center and Printing.",
     "HeaderFile=Header/client_headers/ccchead.htm",
     "CLOSEACTION=http://www.cccopies.com")

Customer("1001b",
     "Name=LSR Publishing Group, Inc.",
     "SUSPENDED=YES")

Customer("1002",
     "CLOSEACTION=http://localhost/mywebsites/thefaithfulmen/webdev",
     "NAME=LSR Printing Company")

Customer("1003",
     "name=LSR Publishing Group, Inc.",
     "Addr=9844 Bridgeton Dr, Tampa, FL 33626", "Phone=813-926-9000",
     "HeaderFile=Header/client_headers/clcHeaderWithDynamicText.htm",
     "HeaderFileText=<b>LSR Publishing Group, Inc.</b><br>" +
                "9844 Bridgeton Dr, Tampa, FL 33626<br>" +
                "<i>&quot;Your Premier Provider of Print Shop Education!&quot;</i>",
     "CLOSEACTION=http://localhost/mywebsites/candgweb/webdev")

