$(function(){
  $('a.popup').click(function(){
	  $url = $(this).attr('href');
		$html = "<iframe src='" + $url + "' width=350 height=220 scrolling=no frameborder=0></iframe>";
		popup($html);
		return false;
	});
});
