// JavaScript Document
function post_click(str, target)
							{
								$.ajax({
										url: target,
										data: str,
										type: 'POST',
										dataType: 'html',
										success: function (result){return_(result);}
										});
										function return_(result)
										{}
							}
function click_here(name)
{
	post_click('mode=update'+'&item='+name+'&value=1', 'click_statistic_engine.php');
}

