﻿function checkClick(code)
{
	$.ajax({url: '/click/' +code,
	        type: 'POST',
			data:{},
			dataType: 'html',
			timeout: 4000,
			error: function(){},
			success: function(result){
				if(result == 1)
				{
					window.clearInterval(intval);
					alert('您的朋友已經點回囉！\n恭喜獲得第三重抽獎機會！\n趕快留下資料抽大獎吧！');
					window.location.href = '/lottery/3rd';
				}
			}
	});
}