//Checks for cookies by attempting to create one and checking for it's existence.
document.cookie = 'cookiesEnabled=' + escape('true');
if (document.cookie == "") {
	var cookieMessage = window.open("","checkCookie","toolbar=no,location=no,scrollbars=yes,resizable=yes,width=500,height=300");
	cookieMessage.document.write("<html><head><title>Cookie Alert</title></head><body>This site requires that you enable cookies.  Check <a href=\"http://www.umcom.org/umcom_sites/enableCookies.htm\">this link</a> to see how to enable cookies for your browser</body></html>");
}

