// Copyright 2008 by Frank Koenen, Finkle Enterprises, LLC
// PVC _ SINTRA

window.quickquote9_configs = {

  // the maximum characters that a "Line" may contain
  'linemax': 20,

  // ------------------------------------------------
  // Provide the costs for the material, per sq. in. in decimal pennies, eg: 1.5 is 1 and 1/2 pennies.
  // ------------------------------------------------
  'materialcostfactor': .168472,
//                'pvc1color': .168472,
//                'pvc2color': .176042,
//                'pvcfullcolor': .198611,
//                'sintra1color': .336945,

  // ------------------------------------------------
  // 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':
  {

    'a24x24': '24" x 24"',    
    'a24x36': '24" x 36"',
    'a24x48': '24" x 48"',
    'a24x96': '24" x 96"',    
    'a36x36': '36" x 36"',
    'a36x48': '36" x 48"',
    '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'
  },

  // ------------------------------------------------
  // Cornering styles
  // ------------------------------------------------
  'cornering':
  {
    'none': 'None',
    '.50': '.50" Radius',
    '1.50': '1.50" Radius',
    'end': 'end'
  },

  // ------------------------------------------------
  // Cornering costs, added to flat cost per sign.
  // ------------------------------------------------
  'coneringcosts':
  {
    'none': 0,
    '.50': 2.00,
    '1.50': 2.00,
    'end': 'end'
  },

  // ------------------------------------------------
  // Holes
  // ------------------------------------------------
  'holes':
  {
    'no': 'No',
    'yes': 'Yes',
    'end': 'end'
  },

  // ------------------------------------------------
  // Holes cost, added to flat cost per sign.
  // ------------------------------------------------
  'holescosts':
  {
    'no': 0,
    'yes': 5.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 'quantity':
       alert('Select the appropriate quantity.');
       break;

      case 'corners':
       alert('Select Corner Style.');
       break;

      case 'holes':
       alert('Select if you want Holes.');
       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'
};

