$(window).load(function() {
	$('.popup').click(function() {
		window.open($(this).attr('href'),'popup','width=800,height=800,scrollbars=yes')
		return false;
    });
});