document.write("
");
function SearchAttorneys() {
$.get('/utilities/httpsproxy.aspx?url=http://attorneys.crowedunlevy.com/AttorneySearchResults.aspx?txtLastName=' + escape($('#txtLastName').val()) + '%26ddlTitle=' + escape($('#ddlTitle').val()) + '%26ddlPracticeArea=' + escape($('#ddlPracticeArea').val()) + '%26txtOffice=' + escape($('#txtOffice').val()),
{ },
function(data){$('#attorneySearchResults').html(data);}
);}
function SearchAttorneysByLastInitial(letter)
{
$.get('/utilities/httpsproxy.aspx?url=http://attorneys.crowedunlevy.com/AttorneySearchResults.aspx?lastInitial=' + letter,
{ },
function(data){$('#attorneySearchResults').html(data);}
);}