// Copyright 2008 by Frank Koenen, Finkle Enterprises, LLC
// BANNER GRAMS

window.quickquote12_configs = {

  // the maximum characters that a "Line" may contain
  'linemax': 20,

  // ------------------------------------------------
  // List the values to include in the Material prompt
  // ------------------------------------------------
  'materials':
  {
      'poly_paper': 'Poly Banner (FULL COLOR)',
             'end': 'end'
  },

  // ------------------------------------------------
  // Provide the costs for the materials, per sq. in. in decimal pennies, eg: 1.5 is 1 and 1/2 pennies.
  // ------------------------------------------------
  'materialcosts':
  {
    
     'poly_paper': .0232638,
           '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 in inches separated by 'x'
  // ------------------------------------------------
  'sizes':
  {
    'a24x45': '1 Ft. x 2 Ft.',    
    'a24x46': '1 Ft. x 3 Ft.',
    'a24x47': '2 Ft. x 3 Ft.',
    'a24x48': '2 Ft. x 4 Ft.',
    'a24x60': '2 Ft. x 5 Ft.',
    'a24x72': '2 Ft. x 6 Ft.',
    'a24x78': '24" x 78"',
    'a24x96': '2 Ft. x 8 Ft.',
    'a24x120':'2 Ft. x 10 Ft.',
    'a24x144':'2 Ft. x 12 Ft.',
    'a24x168':'2 Ft. x 14 Ft.',
    'a24x192':'2 Ft. x 16 Ft.',
    'a24x216':'2 Ft. x 18 Ft.',
    'a24x240':'2 Ft. x 20 Ft.',

    'a36x36': '3 Ft. x 3 Ft.',
    'a36x48': '3 Ft. x 4 Ft.',
    'a36x60': '3 Ft. x 5 Ft.',
    'a36x72': '3 Ft. x 6 Ft.',
    'a36x96': '3 Ft. x 8 Ft.',
    'a36x120':'3 Ft. x 10 Ft.',
    'a36x144':'3 Ft. x 12 Ft.',
    'a36x168':'3 Ft. x 14 Ft.',
    'a36x192':'3 Ft. x 16 Ft.',
    'a36x216':'3 Ft. x 18 Ft.',
    'a36x240':'3 Ft. x 20 Ft.',
    'end': 'end'
  },

  // ------------------------------------------------
  // Grommetts
  // ------------------------------------------------
  'grommetts':
  {
    'none': 'None',
    'corners': 'Each Corner',
    'on24inchandcorner': 'Every 2 ft. and Each Corner',
    'end': 'end'
  },

  // ------------------------------------------------
  // Grommett cost, added to flat cost per sign.
  // ------------------------------------------------
  'grommettscosts':
  {
    'none': 0,
    'corners': 4.00,
    'on24inchandcorner': 8.00,
    '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.');
       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 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'
};

