All div's are activated instead of one

All div's are activated instead of one

I have this code and it starts running when I load the page and when I click the link it opens an popup.
My popups are filled with an mail script. When the page is loaded all mails are send before I click on the link to show the popup.

  1.     $(document).ready(function() {
  2. //When you click on a link with class of poplight and the href starts with a # 
  3. $('a.poplight[href^=#]').live('click', function() {
  4.    var popID = $(this).attr('rel'); //Get Popup Name
  5.    var popURL = $(this).attr('href'); //Get Popup href to define size
  6.    //Pull Query & Variables from href URL
  7.    var query= popURL.split('?');
  8.    var dim= query[1].split('&');
  9.    var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  10.    //Fade in the Popup and add close button
  11.    $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="images/icon/delete.png" class="btn_close" title="<?php echo $lang['sluit'] ?>" /></a>');
  12.    //Define margin for center alignment (vertical   horizontal) - we add 80px to the height/width to accomodate for the padding  and border width defined in the css
  13.    var popMargTop = ($('#' + popID).height() + 80) / 2;
  14.    var popMargLeft = ($('#' + popID).width() + 80) / 2;
  15.    //Apply Margin to Popup
  16.    $('#' + popID).css({
  17.        'margin-top' : -popMargTop,
  18.        'margin-left' : -popMargLeft
  19.    });
  20.    //Fade in Background
  21.    $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  22.    $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies 
  23.    return false;
  24. });
  25. //Close Popups and Fade Layer
  26. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  27.    $('#fade , .popup_block').fadeOut(function() {
  28.        $('#fade, a.close').remove();  //fade them both out
  29.    });
  30.    return false;
  31. });
  32.     });

  1.     echo '<a href="#?w=100" rel="popup_bestelling_mail'.$row['best_id'].'" class="poplight" title="'.$lang['send'].'"><img align="center" src="images/icon/pdf_mail.png" /></a>';

  2.     <div id="popup_edit_bestelling<?php echo $row['best_id']; ?>" class="popup_block">
  3.     <iframe src="edit_bestelling.php?id=<?php echo $row['best_id']; ?>" frameborder="0" width="1000" height="575">
  4.     </iframe>
  5.     </div>