// 画面中央にポップアップウィンドウを開く
function popWinCenter(url, w, h) {
  	var geomX = (screen.width - w) / 2;
  	var geomY = (screen.height - h) / 2;
  window.open(url, "", "width="+w+",height="+h+",left="+geomX+",top="+geomY+",menubar=yes,resizable=yes"); 
}