window.addEvent('domready', function() {
	
	$$('a.new_win').each(function(el){
		el.addEvent('click',function(e){
			new Event(e).stop();
			var newWin = window.open(this.href,"popup","width=650,height=500,scrollbars=1,resizable=1,toolbar=1");
			newWin.focus();
		});
	});
	
	
	
	
});