
	// attempt to write a cookie
	document.cookie = "CookiesEnabled=True";
	
	// read all cookies
	var c = document.cookie;
	
	// if we don't find the cookie we just tried to write then cookies aren't enabled
	if ( c.indexOf("CookiesEnabled=") == -1 ) {
		// alert user to enable cookies
		alert("Usted no tiene habilitadas las cookies.\nHabilite las cookies para poder comprar libros o\ningresar a su cuenta en este Sitio Web.");
		location.href="http://www.ofertondelibros.com/ofertas/cookies/default.html"
	}
	else {
		// expire the cookie
		document.cookie = "CookiesEnabled=True;Expires=January 1, 2000";			
	}
