// JavaScript Document
// JavaScript Document
$(function() {
	$(".popup").click(function(){
		window.open(this.href, "WindowName","width=700,height=600,resizable=yes,scrollbars=yes,scrollbars=1,resizable=1");
		return false;
	});
});
