// popup.jp - 複数用
//htmlに下記のリンクを追加（「popup1」になっているところを任意の名前にする）
//<a href="リンク先URL" onclick="return popup1('リンク先URL')">

function shopmap(url) {
	newwindow=window.open(url,'name','width=650,height=820,scrollbars=1,resizable=1,toolbar=0');
	if (window.focus) {newwindow.focus()}
	return false;
}

function headoffice(url) {
	newwindow=window.open(url,'name','width=650,height=650,scrollbars=1,resizable=1,toolbar=0');
	if (window.focus) {newwindow.focus()}
	return false;
}

