var pop = 'div#popup';
var tab = 'a.close';
var mask = 'div#mask';

function do_modal(url){
  $('body').prepend('<div id="mask"></div><div id="popup"><a href="#" class="close">close</a><iframe name="modal" id="modal" src="'+url+'"></iframe></div>');
  $('iframe#modal').load(function(){
    $('a:contains("Close")',window.frames[0].document).click(function(){remove_modal();});        
  });
  var offset = $(window).scrollTop();
  var pop_tm = (($(window).height() - $(pop).height()) / 2) + offset;
  var pop_lm = (($(window).width() - $(pop).width()) / 2);
  $(mask).css('height',$(document).height());
  $(pop).css({'margin-top':pop_tm,'margin-left':pop_lm});
  $(tab).click(function(){remove_modal();});
}

function remove_modal(){
  $(pop).remove();
  $(mask).remove();
}