// Copyright 2008 by Frank Koenen, Finkle Enterprises, LLC
// LARGE CHECKS

window.quickquote20_configs = {

  // the maximum characters that a "Line" may contain
  'linemax': 25,

  // ------------------------------------------------
  // List the values to include in the Check Styles prompt
  // ------------------------------------------------
  'checkstyle':
  {
        'classic_yellow': 'Classic (Yellow)',
     'professional_blue': 'Professional (Blue)',
             'regal_red': 'Regal (Red)',
           'deluxe_green': 'Deluxe (Green)',
                   'end': 'end'
  },

  // ------------------------------------------------
  // Provide the costs for the styles, per sq. in. in decimal pennies, eg: 1.5 is 1 and 1/2 pennies.
  // ------------------------------------------------
  'checkstylecosts':
  {
        'classic_yellow': 0.034722,
     'professional_blue': 0.034722,
             'regal_red': 0.034722,
          'deluxe_green': 0.034722,
                   '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':
  {
    'a24x66': '24" x 66"',    
    'a17x66': '16.5" x 36"',
       'end': 'end'
  },

  // ------------------------------------------------
  // Provides the messages for the Q-mark clicks.
  // ------------------------------------------------
  quickquoteQmarkClick: function(s)
  {
    switch(s)
    {
      case 'dimensions':
       alert('Select the required size');
       break;

      case 'quantity':
       alert('Select the appropriate quantity.');
       break;


      case 'companyname':
       alert('Enter Company Name for upper left corner.');
       break;

      case 'address':
       alert('Enter Company Address for upper left corner.');
       break;

      case 'city':
       alert('Enter Company City for upper left corner.');
       break;

      case 'state':
       alert('Enter Company State for upper left corner.');
       break;

      case 'zipcode':
       alert('Enter Company Zip Code for upper left corner.');
       break;

      case 'phone':
       alert('Enter Company Phone Number for upper left corner.');
       break;

      case 'date':
       alert('Enter Check Date.');
       break;

      case 'payto':
       alert('Enter Pay To Name.');
       break;

      case 'memo':
       alert('Enter Check Memo.');
       break;

      case 'amount':
       alert('Enter Amount (Dollars & Cents) on Check.');
       break;

      case 'address':
       alert('Enter Company Address for upper left corner.');
       break;

      case 'signature':
       alert('Enter Check Signature as It should read (We will use a script font).');
       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'
};

