var cookieEnabled=(navigator.cookieEnabled)? true : false

//if not IE4+ nor NS6+
if (typeof navigator.cookieEnabled=="undefined" && !cookieEnabled){ 
	document.cookie="testcookie"
	cookieEnabled=(document.cookie=="testcookie")? true : false
	document.cookie="" //erase dummy value
}

if (!cookieEnabled) alert("WARNING: YOUR BROWSER DOESN'T ACCEPT COOKIES\nYour browser either doesn't support cookies or has cookies disabled. This website relies on cookie information to operate properly. We only store information about you experience at this site and no personal information will be stored in a cookie. It is recommended that you use a cookie-enabled browser.\n\nYou are currently using:\n" + navigator.appName + "\n" + navigator.userAgent + "\n\nRecommended browsers to use are:\nInternet Explorer version 5 or greater\nNetscape Navigator version 6.2 or greater\nOpera version 7 or greater\n\nYou can enable cookies in your browser prefrences or options.\nLook for cookie options under a Security or Privacy setting.");
