//DJB PRS 17868 17,868
//This cookie used to be wiped by the Project Creator component, but it was
//realized that many are hardcoding SmartForm Project creations from various
//other places, so the cookie must be wiped more aggressively.
//
//DJB PRS 17499 17,499 begin
//There is a cookie that was used to manage a problem in the SmartForm that needs
//to be wiped out if someone is starting a new Project creation.  More info on this
//cookie can be found in ResourceAdministration: Project/ProjectEditor.
var arrCookieCrumbs = document.cookie.split('; ');
for (var i=0; i<arrCookieCrumbs.length; i++){
	var arrCrumb = arrCookieCrumbs[i].split("=");
	if (arrCrumb[0] == 'InitialCreationWork'){
		document.cookie = 'InitialCreationWork=GettingDeletedNow; path='+theStorageName+'; expires=Fri, 31 Dec 1999 23:59:59 GMT;';
	}
}
//DJB PRS 17499 17,499 end

