$(function(){$('#send').click(function(){SendFeedback();});});$(function(){$('#captcha_text').keypress(function(e){if(e.keyCode==13){SendFeedback()}});})
function SendFeedback(){var noCache=Date();$.post('/feedback/send_feedback',{'type':$('#type').val(),'text':$('#text').val(),'captcha_id':$('#captcha_id').val(),'captcha_text':$('#captcha_text').val()},function(data){if(data.status){$.getJSON('/util/get_captcha',{"noCache":noCache},function(data){$('#captcha').attr('src',data.url);$('#captcha_id').attr('value',data.id);$('#captcha_text').attr('value','');$('#text').attr('value','');});$('#results').html('<p class="good_resp">'+data.resp+'</p>');$('p.good_resp').fadeOut(10000,function(){$('#results').html('<p class="bad_resp"> <br/></p>');});}
else{$.getJSON('/util/get_captcha',{"noCache":noCache},function(data){$('#captcha').attr('src',data.url);$('#captcha_id').attr('value',data.id);$('#captcha_text').attr('value','');});$('#results').html('<p class="bad_resp">'+data.resp+'</p>');$('p.bad_resp').fadeOut(6000,function(){$('#results').html('<p class="bad_resp"> <br/></p>');});}},"json");}
