/**
 * Funkcje do multiforow w jQuery
 *
 * @author Rafal Szunejko
 * @version 1.0 2009/04/30
 */

function check_address()
{
    var n = $('#adres').attr("value");
    $.post("/_tpl/check.php", {
	adres: n
    },
    function(response){
	$("#results").html(response);
	$("#loader_small").hide();
	$("#btn").show();
    }, "html");
//    $('#results').show();
}


