jQuery(document).ready(function(){
	jQuery('a.popup').click(function(event){
		event.preventDefault();
		window.open(jQuery(this).attr('href'), '_blank', 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes');
	});
});
