
function polang_real(input){
    text = $('#dictword').val();
    if($('#dictlang_p').attr('checked')==true){
        lang = 'pl'
    }
    if($('#dictlang_a').attr('checked')==true){
        lang = 'en'
    }
    $('#polangresult').html('<img src="img/progress.gif" border="0" style="display: block;" />')
    $.post("slownik.php", {
            'realdict': "1",
            'lang': lang,
            'word': text
            },
            function(msg) {
                $('#polangresult').html('' + msg);
            }
    );
}

