  $(function(){
  
  var newWin; 
  var id;
    
    function openWindow(w, h, uri)
    {
      windowleft = (screen.width - w)/2;
      windowtop = (screen.height - h)/2;
      settings = '"toolbar=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,status=yes,location=no,width='+w+',height='+h+',left='+windowleft+',top='+windowtop+'"';
      closeWindow();
      
      newWin = window.open(uri,'myForm',settings);

      newWin.focus(); 
      
      return newWin;   
    };
    
    
    function closeWindow()
    {
      if (newWin && !newWin.closed) {
      newWin.close();
      };
    };
  
  $(document).ready(function() {
  $("a[@class='popup']").click(function(i){

      newWin = openWindow(670, 610, $(this).attr('href'));       
      return false;

   }); 
  });
 });