$(function() {
	$('a.popup').click(function() {
		var url = $(this).attr('href');
		var name = $(this).contents();
		window.open(url, "", "location = 0, status = 0, height = 500, width = 500, resizable = 1, scrollbars=1" );
		return false;
	});
});