/** PUBLIC JS FUNCTIONS **/
function va28() {
	if ($('#agent_type').val() == 0) { $('#p_team_name').hide(''); $('#p_members_num').hide(); }
	else { $('#p_team_name').show('slow'); $('#p_members_num').show('slow'); }
}

function va35(u) {
    $('#search').attr('disabled', 'disabled');
    $('#loading').show();
    $.post(u, { act: 1, filter: $('#adr').val() }, function(t){
            $('#search').removeAttr('disabled');
            $('#loading').hide();
            $('#props').show();
            $('#props').html(t);                
    });
}
