$(function()
{
	$("#frmEntry").submit(function()
	{
		var d = zen_make_params("#frmEntry", "confirm");
		$.post(
			location.href,
			d,
			function (ret)
			{
				if (ret.status == "SUCCESS")
				{
					location.href = "/entry/confirm.html";
				}
				else
				{
					alert(ret.msg);
				}
			},
			"json"
		);
		return false;
	});
});