// Copyright 2008 by Frank Koenen, Finkle Enterprises, LLC
// WINDOW LETTERING

window.quickquote15_configs = {

  // the maximum characters that a "Line" may contain
  'linemax': 20,

  // ------------------------------------------------
  // List the values to include in the Material prompt
  // ------------------------------------------------
  'materials':
  {
     '1colortext': '1 Color TEXT ',
     '1colortextwlogo': '1 Color TEXT with Logo',
     '23colortext': '2 to 3 Colors TEXT',
     '23colortextwlogo': '2 to 3 Colors with Logo',

     'fullcolordecal': 'Full Color Decal',
     'chrome': 'Chrome',
     '1colorchrome': '1 Color + Chrome',
     'etchedglassvinyl': 'Etched Glass Vinyl',
     'end': 'end'
  },

  // ------------------------------------------------
  // Provide the costs for the materials, per sq. in. in decimal pennies, eg: 1.5 is 1 and 1/2 pennies.
  // ------------------------------------------------
  'materialcosts':
  {

     '1colortext': .083334,
     '1colortextwlogo': .131945,
     '23colortext': .104167,
     '23colortextwlogo': .138889,

     'fullcolordecal': .138889,

     'chrome': .152778,
     '1colorchrome': .236112,
     'etchedglassvinyl': .152778,
   
     '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':
  {
        'a14x30': ' Up To 14" x 30"',
        'a12x36': ' Up To 12" x 36"', 
        'a12x48': ' Up To 12" x 48"',        
        'a14x30': ' Up To 14" x 30"',
        'a14x36': ' Up To 14" x 36"',
        'a18x24': ' Up To 18" x 24"',    
        'a20x24': ' Up To 20" x 24"',    
        'a24x24': ' Up To 24" x 24"', 
        'a24x30': ' Up To 24" x 30"',
        'a24x36': ' Up To 24" x 36"',
        'a24x48': ' Up To 24" x 48"',    
        'a36x48': ' Up To 36" x 48"',
 
    

       'end': 'end'
  },

  // ------------------------------------------------
  // List the values to include in the colors prompts
  // ------------------------------------------------
  'colors':
  {
     'white': 'White',
     'black': 'Black',
       'red': 'Red',
      'blue': 'Blue',
     'green': 'Green',
    'yellow': 'Yellow',
    'orange': 'Orange',
       '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 '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'
};

