/*
**
**  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'] = 'shades';
sb_config['name'] = 'Cellular Shades';
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 3/4" Single Cell Cordless Cellular Shades';
sb_product['url'] = 'http://www.homeblindz.com/';
sb_product['width_minimum'] = 16;
sb_product['width_maximum'] = 72;
sb_product['length_minimum'] = 10;
sb_product['length_maximum'] = 72;
sb_product['markup_multiplier'] = 1.25;
sb_product['colors'] = new Array(
'5401 White', '#000000', '#ffffff',
'5402 Sand', '#000000', '#ffffff',
'5403 Taupe', '#000000', '#ffffff',
'5404 Tan', '#000000', '#ffffff'
);
sb_product['widths'] = new Array(
  24, 30, 36, 42, 48, 54, 60, 66, 72
);
sb_product['lengths'] = new Array(
  36, 42, 48, 54, 60, 66, 72
);
sb_product['prices'] = new Array(
39.77, 42.29, 46.82, 51.35, 51.85, 77.50, 86.07, 92.93, 96.79,
40.86, 43.44, 48.09, 52.75, 53.26, 79.62, 88.42, 95.47, 99.43,
42.66, 45.36, 48.94, 55.08, 56.56, 83.14, 92.33, 99.69, 103.83,
43.02, 46.13, 50.22, 56.01, 71.07, 84.55, 93.90, 101.38, 105.59,
43.39, 51.78, 54.14, 66.41, 73.01, 85.25, 94.68, 102.23, 106.47,
46.59, 55.55, 59.00, 69.34, 76.24, 85.96, 95.46, 103.07, 107.35,
49.48, 56.49, 63.51, 70.52, 77.53, 86.66, 96.25, 103.91, 108.23
);

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);
