/* 
	Store Front method to build the Cookies for Thirdparty sites that use our header and footer. 
*/


/*
	Create cookie only if value exists as a parameter
	PARAMETER: cookieName - The alias of the cookie crumb to be created
*/
function createThirdPartyCookie(cookieName){
	//Get the cookie information from the URL.
	var argVal = findArg(cookieName);
	
	if(argVal != null && argVal != ""){
		createCookie(cookieName, argVal, 1);
	}		
}

function setHomeDepotPersonalization(){
	createThirdPartyCookie('THD_USERNAME');
	createThirdPartyCookie('THD_USEREMAIL');
	createThirdPartyCookie('THD_REMEMBERME');
	createThirdPartyCookie('THD_LOCSTORE');
	createThirdPartyCookie('THD_USERSTATUS');
	createThirdPartyCookie('THD_MINICART');
	createThirdPartyCookie('THD_MINILIST');
	createThirdPartyCookie('THD_ZIPCODE');
	createThirdPartyCookie('THD_USERREF');
	createThirdPartyCookie('THD_USERREGTYPE');
}

/*
	Onload Init
*/
onloadHandlers[onloadHandlers.length] = "setHomeDepotPersonalization();";
