﻿// Check for browser cookie and redirect if disabled
if(document.cookie.length == 0)
{    
    var loc = (window.location + "").toLowerCase();    
    if(!loc.endsWith('cookiesdisabled.aspx'))
        window.location = "cookiesdisabled.aspx";
}