// Copyright 2007 by Frank Koenen, Finkle Enterprises, LLC
// REAL ESTATE

window.quickquote2_configs = {

  // the maximum characters that a "Line" may contain
  'linemax': 20,

  // ------------------------------------------------
  // List the values to include in the Material prompt
  // ------------------------------------------------
  'materials':
  {
     

       'alluminum_040': '.040 Alluminum 1-Color',
       'alluminum_04023': '.040 Alluminum 2 to 3 Color',
       'alluminum_040full': '.040 Alluminum Full Color-Digital',
     
          'coroplast1color4mm': 'Coroplast 4mm 1-Color',
          'coroplast23color4mm': 'Coroplast 4mm 2 to 3 Color',
          'coroplastfull4mm': 'Coroplast 4mm Full Color-Digital',

          'coroplast1color10mm': 'Coroplast 10mm 1-Color',
          'coroplast23color10mm': 'Coroplast 10mm 2 to 3 Color',
          'coroplastfull10mm': 'Coroplast 10mm Full Color-Digital',


 
     'scooterboard1c': 'Scooter Board 3/16"',
     'scooterboard2to3': 'Scooter 3/16" 2 to 3 color',
     'scooterboardfull': 'Scooter Board 3/16" Full Color-Digital',

     'end': 'end'
  },

  // ------------------------------------------------
  // Provide the costs for the materials, per sq. in. in decimal pennies, eg: 1.5 is 1 and 1/2 pennies.
  // ------------------------------------------------
  'materialcosts':
  {

     'alluminum_040': .083334,
     'alluminum_04023': .100694,
     'alluminum_040full': .100694,

          'coroplast1color4mm': .055555,
          'coroplast23color4mm': .072916,
          'coroplastfull4mm': .072916,

          'coroplast1color10mm': .069444,
          'coroplast23color10mm': .086805,
          'coroplastfull10mm': .086805,

     'scooterboard1c': .083334,
     'scooterboard2to3': .100694,
     'scooterboardfull': .100694,

     'end': 'end'
  },

  // ------------------------------------------------
  // List the values to include in the sizes prompts
  // The value keys should be in the form 'aWWxHH', a literal 'a' and 2 digits height and width separated by 'x'
  // ------------------------------------------------
  'sizes':
  {
    
    'a18x24': '18" x 24"',
    'a18x30': '18" x 30"',
    'a24x24': '24" x 24"',
    'a24x36': '24" x 36"',
    
       'end': 'end'
  },

  // ------------------------------------------------
  // List the values to include in the sides prompts
  // ------------------------------------------------
  'sides':
  {
    'single': 'Single',
    'double': 'Double',
       'end': 'end'
  },

  // ------------------------------------------------
  // Provide the costs factors for sides
  // The value keys should be the same as those provide in the 'sides' prompts.
  // The values are a multiplication factor of the cost for the selected sides.
  // ------------------------------------------------
  'sidescosts':
  {
    'single': 1,
    'double': 1.5,
       'end': 'end'
  },

  // ------------------------------------------------
  // Provides the messages for the Q-mark clicks.
  // ------------------------------------------------
  quickquoteQmarkClick: function(s)
  {
    switch(s)
    {
      case 'dimensions':
       alert('Select the height x width dimensions');
       break;

      case 'sides':
       alert('Select either single or doubled sided.');
       break;

      case 'material':
       alert('\
         Select the appropriate material.   \n\
       ');
       break;

      case 'quantity':
       alert('Select the appropriate quantity.');
       break;

      case 'turnaround':
       alert('Please select the turn around time from below.');
       break;

      case 'specialinstructions':
       alert('Enter any special instruction below.');
       break;

      case 'upload':
       alert('At checkout you will be able to upload a cut ready, or print ready file. Have questions? Please call for details.');
       break;

    }
  },

  'fileUploadCost': 0.00,

  // ------------------------------------------------
  // List of turn around times. format: key :== item_cost, value = proper name
  // ------------------------------------------------
  'turnaroundspecs':
  {
     'pickup_0.0': 'Local Pickup- (Not Shipped)',
     'standard_9.5': 'Standard(Adds $9.50 Shipping to Total)',
     'expedite_30': 'Expedite(Adds $30 Shipping to Total)',
   
             'end': 'end'
  },

  'end': 'end'
};
