function popup(url){
	window.open(url,"popwin","scrollbars=yes,menubar=no,toolbar=no,width=940,height=700");
}

// ルートからポップアップの場合
function popmap1(){
var WinD03=window.open("access/index.html","pop1","scrollbars=yes,menubar=no,toolbar=no,width=940,height=700");
}
function popup2(){
	window.open("vmax/index.html","pop2","scrollbars=yes,menubar=no,toolbar=no,width=940,height=1000");
}

// 第二階層からポップアップの場合
function popmap2(){
var WinD03=window.open("../access/index.html","pop2","scrollbars=yes,menubar=no,toolbar=no,width=940,height=700");
}

// 仮にトップページからのリンクとして作成↓
function popstory(){
var WinD03=window.open("topics/story.html","pop3","scrollbars=yes,menubar=no,toolbar=no,width=940,height=700");
}
// 第二階層からのリンクとして作成↓
function popstory2(){
var WinD03=window.open("../topics/story.html","pop3","scrollbars=yes,menubar=no,toolbar=no,width=940,height=700");
}

