$(function() {
	$(".popup").click(function(){
		window.open(this.href, "WindowName","width=490,height=350,resizable=yes,scrollbars=yes");
		return false;
	});
	$(".popup2").click(function(){
		window.open(this.href, "WindowName","width=659,height=500,resizable=no,scrollbars=yes");
		return false;
	});
	
});

