﻿var popupWidth = 300;
var popupHeight = 100;
var redirectUrl = "/";
$(function(){
    $("#hiddenModalContent #btnYes").click(function(){
        $.cookie("IsInACT", "1");
        tb_remove();
    });
    $("#hiddenModalContent  #btnNo").click(function(){
        $.cookie("IsInACT", "0");
        window.location = redirectUrl;
    });
    if(navigator.userAgent.toLowerCase().indexOf('googlebot') == -1)
    {
        if($.cookie("IsInACT") == null)
        {
            tb_show("", "#TB_inline?height=" + popupHeight + "&width=" + popupWidth + "&inlineId=hiddenModalContent&modal=true", "");
        }
        else if($.cookie("IsInACT") == "0")
        {
            window.location = redirectUrl;
        }
    }
});
