/*******************************************************************
/
/	This file specifies all the configuration variables required to run the 
/	hint basket.
/
********************************************************************      */
// DO NOT TOUCH
var h_w = window;
var mailing_vars= new Array();
// DO NOT TOUCH
/********************
Server Configuration Options
******************* */

/*****
Item configuration 
******* */

// This is where the item itentifer field is stored query string variables with ##varname##
var item_identifier_format = "##ItemID##";
// This specifies the  description of the item query string variables with ##varname##
var item_description_format = "##ProdName##";
var vendor_description_format = "##Vendor##";


/*********
Image URL configuration
******** */

//specifies the format for the url of the images variables will apear in use query string variables with ##varname##
var img_base_url_format = "##Image##";
//specifies the format the image directory use query string variables with ##varname##
var img_dir_format ="";
//specifies the format the image url will apear in use query string variables with ##varname##
var img_file_format = "";

/***********
Product URL configuration
*********** */

// URL for the product page variables from the cookie can be used with ##varname##
var product_url_format = "##Link##";
// default product URL incase item does not exist.
var default_product_url = "http://www.neimanmarcus.com/";


/********************
Basket Size Options
******************* */

var total_number_of_items = 6;
// Message to allert when using Default Error function
var out_of_range_error_message = "You may email up to 6 products at a time.";
// May be overridden to call a different funtion when an error occurs.
// Default is: default_error_function();
var on_error_function = "default_error_function()";

/********************
Formating Options
******************* */

// Columns for formating.
var columns =1;
// Item Width for formating
var item_width ="280px";
// Maximum image width
var max_img_width ="200px";

/********************
Style Options
******************* */

var font_type="Arial, Helvetica, sans-serif";
var font_size="10pt";
var font_color="#2C3C6F";
var vendor_font_color="#1DB9F3";
var prod_font_color="#2C3C6F";
var img_border_width="0";
var img_border_color="black";
var text_box_border_width="0";
var text_box_padding ="11"
var text_box_border_color="black";

/*****************************
Mailing Options

All variables will be included in a hidden field, there value may be defined here.  
the variable name is the Key, and the value is a string containing the variable values in ## notation.
All variables will be number sequentially.
***************************** */
mailing_vars['SKU'] = "##ItemID##";
mailing_vars['PROD_NAME'] = "##ProdName##";
mailing_vars['IMG_URL'] = "##Image##";
mailing_vars['VENDOR'] = "##Vendor##";
mailing_vars['PROD_LINK'] = "##Link##";

