modal window

modal window

Hi there,  here http://www.kernel-online.it/divecircle there is my project. 

If you click on grey button "INSERISCI LA TUA DESTINAZIONE PREFERITA" a popup is open. 
After if you click on Passegero another popup is open. 

My problem is the position the second popup:  I would put this popup under the button "Passeggero" instead in the center of the first popup

  1.  $('#addperson-1').click(function(){
  2.                     $('#select-person').dialog({
  3.                         width:270,
  4.                        height:160,
  5.                        maxWidth:300,
  6.                        maxHeight: 160,
  7.                        my: "right center",
  8.                         at: "right bottom",
  9.                         of: "#dialog"  /*the first popup*/
  10.                     });
  11.                     
  12.                 });
  13.