$(document).ready(function() {
	$(".popup").click(function() {
		var tw = window.open(this.getAttribute("href"), this.getAttribute("target") || "_blank", "location=0,statusbar=0,menubar=0,width=640,height=360");
		tw.focus();
		return false;
	});
});