//A要素のclassに「popup」と入っていればポップアップでウィンドウを開く。

$(function(){
$('a[@class="popup"]').click(function(){
window.open(this.href, "popup","width=500,height=710,scrollbars=auto");
return false;
});
});

//A要素のclassに「popupL」と入っていればポップアップでウィンドウを開く。

$(function(){
$('a[@class="popupL"]').click(function(){
window.open(this.href, "popupL","width=700,height=710,scrollbars=auto");
return false;
});
});