function doTheTask() { do_box = new vB_AJAX_Handler(true) do_box.onreadystatechange(do_box_Done) do_box.send('url','&var1=1&var2=2') do_button = new vB_AJAX_Handler(true) do_button.onreadystatechange(do_button_Done) do_button.send('url') } function do_box_Done() { if (do_box.handler.readyState == 4 && do_box.handler.status == 200) { .... } } function do_button_Done() { if (do_button.handler.readyState == 4 && do_button.handler.status == 200) { .... } }