function not_reg () {
	if (document.getElementById("notify_ch").checked){
		$("#notify_ajax").html('Этот сервис доступен только тимерам, т.е. зарегистрированным пользователям. Для этого Вам необходимо <a href="/tools/register.php?register=yes">зарегистрироваться</a> или пройти <a href="/tools/auth.php?login=yes">авторизацию</a>');
		$("#notify_ajax").attr("class","notify_arrival");
	}else{
		$("#notify_ajax").html('');
		$("#notify_ajax").attr("class","notify_arrival dnone");
	}
}

function place_subscribe (place_id) {

	$("#notify_ajax").html('Отправка запроса...');
	$("#notify_ajax").attr("class","notify_arrival");

	var get = "place_id="+place_id;
	if (document.getElementById("notify_ch").checked){
		get += "&action=1";
	}else{
		get += "&action=0";
	}
	
	var data = $.ajax({
		type: "POST",
		url: "/bitrix/components/individ/place.subscribe/templates/.default/ajax_subscribe.php",
		data: get,
		async: false
	}).responseText;
	
	$("#notify_ajax").html(data);
}
