//トップページの実績で使用
$(function(){
	$(".popup_win").click(function(){
		window.open(this.href,'newwin','width=800, height=600, menubar=no, toolbar=no, scrollbars=yes');
		return false;
	});
});

//マンション完成物語で使用
$(function(){
	$(".popup_mansion").click(function(){
		window.open(this.href,'newwin','width=500, height=800, menubar=no, toolbar=no, scrollbars=yes');
		return false;
	});
});
