// JavaScript Document

function cc()
{
	// check for a cookie
	if (document.cookie == "") 
		alert("Cookies need to be enabled for this site to work properly. To change your settings click on tools and then internet options. Next click on the privacy tab and then lower the slider down to Medium. After that click on Apply and then OK.");
}

// Set a cookie to be sure that one exists.
document.cookie = "cookieCheck"

cc()