jQuery(function($){
	
	var height = 800;
	var width = 800;
	
	function popup(href, title) {
		window.open(href, title, 
				"height=" + height + ",width=" + width + ",status=0,toolbar=0,location=0,menubar=0,scrollbars=1");
	}
	
	$('.links a, .link a').bind('click', function(event) {
		var $this = $(this);
		event.preventDefault();
		popup($this.attr('href'), $this.attr('title'));
	});

});
