// Check to make sure the user has cookies enabled; which are
// absolutely required for College Site
if (document.cookie.indexOf('CSID=') == -1) {
	document.cookie = "test=hello";
	if (document.cookie.length == 0) {
		document.location = "http://college.sparknotes.com/nocookies.html";
	}
}

