﻿
// CHECK IF THE BROWSER SUPPORTS COOKIES
var cookieEnabled = (navigator.cookieEnabled === true && document.cookie.indexOf("ASPSESSIONID") != -1 && document.cookie.indexOf("testcookie") != -1);

if (!cookieEnabled)
{
	// alert('Cookies Are Disabled');
	document.write('<p>It appears that your browser may be blocking cookies. <br /> For instructions on how to enable cookies for your browser, please <a href="http://www.google.com/cookies.html" target="_blank">click here</a></p><br/>');
}
