function setCookie(notfull, locationUrl) {
	var notfullStr = "";
	if(notfull) {
		notfullStr = "1";
	}
	document.cookie = "notfull=" + notfullStr;
	location.href = locationUrl;
}
