/**************************************************
* ↓popUp
**************************************************/
$(function() {
$('a.popup').click(function(){
window.open(this.href, null, "width=600,height=600,scrollbars=yes");
return false;
});
});

