


$(function() {
		   
	$('a.new_win').click(function(){
		window.open(this.href);
		return false;
	});
	
	$('.popup').popupWindow({ 
		height:620, 
		width:580,
		scrollbars:1,
		centerBrowser:1
	});
		
});
