// popup リンクに class="popup" を追加

window.onload=autoPOP;

function autoPOP()
{
var x = document.getElementsByTagName('a');
for (var i=0;i<x.length;i++)
{
if (x[i].getAttribute('className') == 'popup' || x[i].getAttribute('class') == 'popup')
{
x[i].onclick = function () {
return winOpen(this.href)
}
x[i].title += '啓文堂書店地図';//タイトルの変更
}
}
};

function winOpen(url) {
window.open(
url,
'popup',
'width=500,height=500,scrollbars=1,resizable=1'
);//ウィンドウサイズ変更、スクロールの有無、リサイズの有無

return false;
};