(function($){
	$(function(){	
		$("a[href*=popup], a.popup").click(function(e){
		    var $this = $(this), 
		        href  = $this.attr('href'), 
		        rel   = $this.attr('rel').split('|'),
		        name  = rel[0],
		        width  = rel[1],
		        height = rel[2];
		        
			window.open( href, name, "width=" + width + ",height=" + height + ",scrollbars=no,resizable=yes,toolbar=no,menubar=no,location=no,status=no" );
			e.preventDefault();
		});
	});
})(jQuery);