$(function(){
	$("a.popup").click(function(e){
		var win = window.open( this.href, "popupwin", "scrollbars=yes,resizable=yes,width=980,height=750");
		win.focus();
		return false;
	});
});

