/** 
 * @file Prices
 * JSON object holding currency setting, pricing data and display settings for All products.  
 * See Instructions in comments below. 
 *
 * Note:  Do Not change the IDs on the inputs in the web form. The product name property below MUST match the ID on its input in the HTML form.  
 * <input type="text" name="Exchange_Standard_CAL_with_SA" id="Exchange_Standard_CAL_with_SA" class="axis1" onkeyup="Estimator.processChange(this)" />
 */
 
if (typeof Estimator == 'undefined') { alert('Application Error:\n\nEstimator object not defined.'); }
Estimator.Prices = {
	

// --[ EDIT configurations Below this line ]------------


	'currency':	'$', 
	'show_decimal': true, 
	/**
	 *  CURRENCY - PERMITTED VALUES:
	 *	Use dollar sign, letters, or a numeric or named HTML entity.  (Do not use more than one HTML entity.)
	 *	DO NOT use UTF-8 (fancy or extended) characters for non-dollar currency symbols! These cause fatal errors.
	 *  Can be null (no symbol will display).
	 * 
	 *  Examples:
	 *		Dollar:			$			&#36;	{there is no named entity for dollar sign}
	 *		Canadian Dollar	C$	
	 *		Euros:			&#8364;		&euro;
	 *		British pounds:	&#163;		&pound;
	 *		Yen:			&#165;		&yen;
	 *		Deutsche Marks: DM
	 *		Francs:			F
	 *		
	 *	Note:  All pricing calculations are base 10.
	 *
	*/
	
	
	/**
	 * display_products
	 * Set which products should appear in the Estimator form. 
	 * To hide a product in the Estimator's form, set the value next to its name below to "false" (no quotes).
	 * To show a product, set the value to "true" (no quotes).
	 */
	'display_products': {
		'buy_button': true,
		'Exchange_Online':	true,
		'Office_SharePoint_Online_Standard': true,
		'Office_Communications_Online': true,
		'Office_Live_Meeting_Standard': true,
		'Business_Productivity_Online_Standard_Suite': true,
		'Exchange_Hosted_Services_Archive': true,
		'Exchange_Online_Deskless_Worker': true,
		'SharePoint_Online_Deskless_Worker': true,
		'Deskless_Worker_Online': true,
		'Dynamics_CRM_Online_Professional': true,
		'Dynamics_CRM_Online_Professional_Plus': false
	},
	
	
	/**
	 * PRICING INFO
	 * No commas.  Always use decimals even if currency's standard written format is different.
	 * Do not delete or omit Any of the products.  To hide a product in the form, use 'display_products' (above).
	 * REQUIRED:	Only one property is required:  'maximum'.  If the only property declared, it will be a flat price each.
	 *
	 * FORMAT:		integer-top_of_range:	float-price_for_that_range,
	 *			  	'maximum':  	lowest_price_as_float  {Required: max refers to count of products}
	 * EXAMPLE:
	 *				249:  10.99  	Means: up to and including 249 units priced at $10.99 each
	 */
	
	'Exchange_Online': {
		249:		5.0,
		2399:		4.81,
		5999:		4.48,
		14999:		4.11,
		'maximum':	3.80
	},	
		'Exchange_Standard_CAL_with_SA': {
			249:		3.61,
			2399:		3.43,
			5999:		3.19,
			14999:		2.92,
			'maximum':	2.71
		},
	
	'Office_SharePoint_Online_Standard': {
		249:		5.25,
		2399:		5.05,
		5999:		4.70,
		14999:		4.31,
		'maximum':	3.99
	},
		'SharePoint_Standard_CAL_with_SA': {
			249:		3.32,
			2399:		3.12,
			5999:		2.91,
			14999:		2.67,
			'maximum':	2.47
		},
		
	'Office_Communications_Online': {
		249:		2.00,
		2399:		1.92,
		5999:		1.79,
		14999:		1.64,
		'maximum':	1.52
	},
		'Office_Communications_Standard_CAL_with_SA': {
			249:		1.36,
			2399:		1.29,
			5999:		1.20,
			14999:		1.10,
			'maximum':	1.02
		},
		
	'Office_Live_Meeting_Standard': {
		249:		4.50,
		2399:		4.33,
		5999:		4.03,
		14999:		3.69,
		'maximum':	3.42
	},
		'Office_Live_Meeting_Standard_CAL_with_SA': {
			249:		2.95,
			2399:		2.79,
			5999:		2.60,
			14999:		2.38,
			'maximum':	2.21
		},
	
	'Business_Productivity_Online_Standard_Suite': {
		249:		10.00,
		2399:		9.62,
		5999:		8.96,
		14999:		8.21,
		'maximum':	7.60
	},
		'Business_Productivity_Online_Standard_Suite_from_ECAL': {
			249:		4.93,
			2399:		4.58,
			5999:		4.26,
			14999:		3.90,
			'maximum':	3.62
		},
		'Business_Productivity_Online_Standard_Suite_from_Core_CAL': {
			249:		7.15,
			2399:		6.79,
			5999:		6.32,
			14999:		5.79,
			'maximum':	5.37
		},
		
	'Exchange_Hosted_Services_Archive': {
		249:		4.5,
		2399:		3.98,
		5999:		3.70,
		14999:		3.39,
		'maximum':	3.14
	},
	'Exchange_Online_Deskless_Worker': {
		249:		2.00,
		2399:		1.92,
		5999:		1.79,
		14999:		1.64,
		'maximum':	1.52
	},
	'SharePoint_Online_Deskless_Worker': {
		249:		2.00,
		2399:		1.92,
		5999:		1.79,
		14999:		1.64,
		'maximum':	1.52
	},
	'Deskless_Worker_Online': {
		249:		3.00,
		2399:		2.89,
		5999:		2.69,
		14999:		2.46,
		'maximum':	2.28
	},
	'Dynamics_CRM_Online_Professional': {
		'maximum':	44.00
	},
	'Dynamics_CRM_Online_Professional_Plus': {
		'maximum':	59.00
	}
	

// --[ do not edit Below this line ]------------
}; // end Estimator.Prices


