$(document).ready(function()
{
		$.post("incSessionCheck.asp",{} ,function(data)
        {
		  if(data=='no')
		  {
        	$.colorbox({width:"50%", inline:true, href:"#inline_example1"});

			$("#click").attr("disabled", "disabled");
			$("#intLegalAge").click(function() {
                var checked_status = this.checked;
                if (checked_status == true) {
                    $("#click").removeAttr("disabled");
                }
                else {
                    $("#click").attr("disabled", "disabled");
                }
            });

			$("#click").click(function()
									   {
										   $.post("incRegionSet.asp", { vchRegion:$("#vchRegion").val() } );
										   $.post("incSessionSet.asp", {} );
										   $.colorbox.close();
										   
		   });
          }
		  else
		  {
		  }
				
var auto_refresh = setInterval(function()
		{
		$("#Banner").load("incRegionCheck.asp", { vchRegion:$("#vchRegion").val()  } );
		}, 2000);
		});
});

