﻿function feedbackform_return() {
	$("#feedback_form").show();
	$("#feedback_form_result").hide();
}

$(document).ready(function(){
	$("#feedback_form").after('<div id="feedback_form_result"></div>');
	$("#feedback_form_result").css("min-height", $("#feedback_form").height()+"px");
	$("#feedback_form").submit(function(){
		$.getJSON(
			'/mailer.php',
			{
				email: $("#feedback_form INPUT[name='email']").val(),
				msg: $("#feedback_form TEXTAREA[name='msg']").val()
			},
			function (res) {
				var huy = '<br /><br /><a href="javascript:void(0);" onclick="feedbackform_return()">Вернуться к форме</a>';
				if (!res.mail_result) {
					$("#feedback_form").hide();
					$("#feedback_form_result").show().html('<font color="red">Ошибка отправки запроса!<br />Обратитесь к администратору!</font>'+huy);
				} else if (res.mail_result.status=="error") {
					$("#feedback_form").hide();
					$("#feedback_form_result").show().html('<font color="red">'+res.mail_result.error_message+'</font>'+huy);
				} else if (res.mail_result.status=="ok") {
					$("#feedback_form").hide();
					$("#feedback_form_result").show().html('<font color="green">'+res.mail_result.reply+'</font>'+huy);
				} else {
					$("#feedback_form").hide();
					$("#feedback_form_result").show().html('<font color="red">Какой-то непонятный косяк!<br />Сообщите администратору!</font>'+huy);
				}
			}
		);
		return!1;
	});
});
