$("give_information_form").addEvent("submit", function(event){

	new Event(event).stop();

	if (!(/\w+([-+.]\w+)*@\w+([-.]\w+)*\.[a-zA-Z]{2,4}$/).test(this.user_email.value)){
		alert("이메일 주소를 확인해 주세요.");
		this.user_email.focus();
		return;
	}

	if (!this.category.value){
		alert("제보 분류를 선택해 주세요.");
		this.category.focus();
		return;
	}

	if (this.feedback.value.clean().length < 10){
		alert("제보 본문을 더 자세히 입력해 주세요.");
		this.feedback.focus();
		return;
	}

	this.submit.disabled=true;
	show_status("제보 메세지를 전송하고 있습니다...");

	this.send({
		onComplete:function(r){
			this.submit.disabled=false;
			this.reset();
			show_status(r);
			hide_status.delay(5000);
		}.bind(this)
	});

});