$(function(){
	var newWinLink = 'a.popup' 
	var aTarget = $(newWinLink).removeAttr('target');
	
	$(newWinLink).click(function(){		
			var _link =$(this).attr('href');
			popupwin = window.open(_link,'newwindow','width=1000px,height=770px,resizable=yes,toolbar=yes,directories=yes,scrollbars=yes,menubar=yes,status=yes,location=yes,');
			popupwin.focus();
			return false;
	});
});

