$(function() {
	
	$('#agreeContent').load('/page/agreement');
	$('.popLink').click(function(e) {
		e.preventDefault();
		h = $(this).attr('href');
		$('#agree #page').val(h);
		var uArr = h.split('/');
		var page = uArr[parseInt(uArr.length - 1)];

		$.get('/page/check-session/page/'+page+'/time/'+ new Date().getTime(), function(data) {
		
			if ( parseInt(data) == 0) {
				$('#agree').dialog({
					height : 600,
					width : 720,
					zIndex: 9999
				});
			} else {
				window.location = h;
			} 

		})
	})

		$('.dntAgree').live('click', function() {
				$('#agree').dialog('close');
		});
	$('.agreeBtn').live('click', function() {
		if ($(this).parent().find('.agreeChk').is(':checked')) {
			h = $(this).parent().find('#page').val();
		
			var uArr = h.split('/');
			var page = uArr[parseInt(uArr.length - 1)];
			$.get('/page/set-session/page/'+page+'/time/' + new Date().getTime(), function(data) {
				window.location = h;
			});

		}
	})
})

