function voat(lang){
	if ($('input[@name=opros]').filter(':checked').length != 0){
	$.get(
		'/ajax/zavtra/voat/?lang='+lang,	   
		 {action:'VoatFor', idofvoat:$('input[@name=quest]').val(), answer:$('input[@name=opros]').filter(':checked').val()},
		 function(xml){
		 	$('#fld').html($('result', xml).text());
			$('#vpat_btn').remove();
		 }
	);	
	} else {
		return false;
	}
}
