// This configuration file allows
//    1 - Specification of which tests are omitted
//    2 - Specification of minimum requirements on each test


var lmsCheck = { // Declaring globals is a best practice

	browser: { // Removing or adding any "minBrowser" below will define the support, and the minimum revision
		disabled: false,
		requiredText: 'Explorer 5.5 and up<br />Firefox 3.0 and up<br />Safari 1.0 and up',
		minExplorer: 5.5,
		minFirefox: 3.0,
		minSafari: 1.0
	},
	
	java: {
		disabled: false,
		requiredText: '6.0 and up',
		minVersion: '6.0'
	},
	
	popup: {
		disabled: false,
		required: true
	},
	
	cookies: {
		disabled: false,
		required: true
	},
	
	bandwidth: {
		disabled: false,
		minBandwidth: 50
	},
	
	resolution: {
		disabled: false,
		height:600,
		width:800
	},
	
	flash: {
		disabled: false,
		minVersion: '10,0,0,0'  // This old version was 
	}
};
