
// SETTINGS
// ----------------------------------

var dspopvars = {

	// ENTRY OFFER
	// ----------------------------------

	// doLoad
	// onload offer settings
	// [0] = true | false
	// [1] = offer object to display
	doLoad: [false, offer1],

	// maxLoadTries
	// the number of times to try to load (to accommodate object creation)
	maxLoadTries: 10,

	// supressOnload
	// array of strings, options: 'ie6', 'ie7'
	supressOnload: [],

	// EXIT OFFER
	// ----------------------------------

	// doUnload
	// [0] = true | false
	// [1] = offer object to display
	doUnload: [true, offer1],

	// supressOnload
	// array of strings, options: 'ie6', 'ie7'
	// NOTE: IE6 uses deployIE6Offers() as its exit handler, to stop deployIE6Offers() from firing enter 'ie6' in the supressUnload array or remove the contents of deployIE6Offers()
	// NOTE: IE6 *IGNORES* the [1] value for doUnload
	supressUnload: [],
	
	eMsg: offer1.eMsg,

	// ON CLICK (ff only)
	// ----------------------------------

	// ffClick
	// [0] = true | false
	// [1] = offer object to display
	ffClick: [false, [offer1]]

}

// MISC
// ----------------------------------
function dsAddUrlParam(offerRef, pName, pVal){

	offerRef.url += '&' + pName + '=' + pVal;
	dsUpdateInfoObj(dspopvars);

}