// Copyright 2007 by Frank Koenen, Finkle Enterprises, LLC
// EXTERIOR SIGNS

window.quickquote3_configs = {

  // the maximum characters that a "Line" may contain
  'linemax': 20,

  // ------------------------------------------------
  // List the values to include in the Material prompt
  // ------------------------------------------------
  'materials':
  {
       
    'polymetal1color': 'Poly Metal Lite 1-Color',
    'polymetal23color': 'Poly Metal Lite 2 to 3 Color',
    'polymetalfullcolor': 'Poly Metal Lite 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" 1-Color',
     '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':
  {

       'polymetal1color': .083334,
       'polymetal23color': .100694,
       'polymetalfullcolor': .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"',
    'a24x30': '24" x 30"',
    'a24x36': '24" x 36"',
    'a24x48': '24" x 48"',
    'a24x60': '24" x 60"',
    'a24x96': '24" x 96"',    
    'a36x36': '36" x 36"',
    'a36x48': '36" x 48"',
    'a36x60': '36" x 60"',
    'a48x48': '48" x 48" Freight Or Local P/U',    
    'a48x72': '48" x 72" Freight Or Local P/U',
    'a48x96': '48" x 96" Freight Or Local P/U',

       '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'
};
