  /*
jQuery(document).ready(function() {
		DD_roundies.addRule('.mail_text', '7px 7px 7px 7px');
		DD_roundies.addRule('.mail_text2', '7px 7px 7px 7px');
		DD_roundies.addRule('.mail_send', '7px 7px 7px 7px');
 
 
});	
*/

function checkOrderForm() {
	//document.getElementById("send_button")
	if (!document.getElementById("frm_name").value) {
		alert('Введите ваше имя');
		return;
	}
	if (!document.getElementById("frm_answer").value || document.getElementById("frm_answer").value!=5) {
		alert('Введите ответ на вопрос');
		return;
	}
	
	if (!document.getElementById("frm_email").value) {
			alert('Введите email');
			return;
	}
	document.getElementById("order_mail").submit();
	
}
