window.addEvent('domready', function() {
	
	$$('a.new_win').each(function(el){
		el.addEvent('click',function(e){
			new Event(e).stop();
			var width=screen.width;
			var height=screen.height;
			// var left   = (screen.width  - width)/2; // for centering
			// var top    = (screen.height - height)/2; // for centering
			var left   = 0;
			var top    = 0;
			var newWin = window.open(this.href,"popup","left="+left+",top="+top+",width="+width+",height="+height+",scrollbars=1,resizable=1,toolbar=1");
			newWin.focus();
		});
	});
	
	
	
	
});