// this is for cookie-ing users based on specific parameters in the url.
// this function is called on the body's onload().
function set_fina_cookies() {
	
	// this section is for cookie-ing the user so that when they check out,
	// the promo-code field is auto-populated with MCFS.
	if (window.location.href.indexOf('mkwid') > 0 && window.location.href.indexOf('pcrid')) {
		createCookie('autopopulate_promo_code', 'MCFS', 1);
	}
}

