/*
**
**  Copyright (c) 1986-2008, Accent Blinds and Shades. All rights reserved.
**
**  Usage, duplication, and/or modification of this program, its
**  representation, or its results without written permission from
**  Accent Blinds and Shades is expressly prohibited.
**
*/

var sb_config_drop_down, sb_products, sb_product, sb_option, sb_options;

sb_config = new Object();
sb_config['label'] = 'blinds';
sb_config['name'] = 'Faux Wood Blinds';
sb_config['product_type_list_box'] = 0;
sb_config['product_color_list_box'] = 0;

sb_products = new Array();

sb_product = new Object();
sb_product['name'] = 'Economy 2" Faux Wood Blinds';
sb_product['url'] = 'http://www.homeblindz.com/';
sb_product['width_minimum'] = 21;
sb_product['width_maximum'] = 72;
sb_product['length_minimum'] = 10;
sb_product['length_maximum'] = 96;
sb_product['markup_multiplier'] = 1.25;
sb_product['colors'] = new Array(
'4110 Snow White', '#000000', '#ffffff',
'4111 Pearl White', '#000000', '#ffffff'
);
sb_product['widths'] = new Array(
  24, 28, 32, 36, 42, 48, 54, 60, 66, 72
);
sb_product['lengths'] = new Array(
  42, 48, 54, 60, 66, 72, 78, 84, 90, 96
);
sb_product['prices'] = new Array(
19.36, 21.85, 23.99, 25.54, 29.28, 31.77, 34.27, 36.13, 40.81, 46.10,
21.23, 23.10, 25.54, 28.04, 31.46, 34.27, 36.76, 38.94, 44.23, 50.15,
22.78, 24.65, 28.04, 30.22, 33.95, 36.76, 38.94, 42.99, 47.35, 53.58,
24.03, 26.52, 29.59, 32.08, 35.51, 38.94, 42.05, 44.86, 50.77, 57.32,
26.17, 29.28, 31.77, 34.27, 38.31, 41.43, 44.54, 48.28, 54.20, 61.05,
28.35, 30.84, 33.64, 36.13, 40.81, 43.61, 47.35, 51.09, 57.32, 65.10,
29.59, 32.40, 35.20, 38.00, 42.99, 46.73, 50.15, 54.20, 60.74, 68.53,
31.46, 34.27, 37.07, 40.50, 44.86, 49.22, 53.58, 56.69, 63.86, 72.58
);

sb_products.push(sb_product);


sb_options = new Array();

sb_option = new Object();
sb_option['type'] = 'radio';
sb_option['label'] = 'mount_position';
sb_option['name'] = 'Mount position';
sb_option['script_check'] = "if (!v) s = 'Please select a mount position';";
sb_option['script_string'] = "s = ', Mount-' + v;";
sb_options.push(sb_option);

sb_option = new Object();
sb_option['type'] = 'select';
sb_option['label'] = 'room';
sb_option['name'] = 'Room';
sb_option['suffix'] = '(for your records)';
sb_option['script_string'] = "if (v != 'none') s = ', located in ' + v;";
sb_options.push(sb_option);

sb_option = new Object();
sb_option['type'] = 'select';
sb_option['label'] = 'window';
sb_option['name'] = 'Window';
sb_option['suffix'] = '(for your records)';
sb_option['script_string'] = "if (v != 'none') s = ', window #' + v;";
sb_options.push(sb_option);
