$(document).ready(function(){
	$("a.pop").click(function(e) {
		e.preventDefault();
		var page = $(this).attr("href");
		
		window.open(page, "pop", "scrollbars=yes,resize=yes,height=500,width=560");
	});
});
