// JavaScript Document

function popup_modeless(url){
	x = (screen.width - 680) / 2;
	y = (screen.height - 700) / 2;
	var newWin = window.open(
		url,    //移動先
		"pop",  //ターゲット名（aタグのtargetと同様）
		"width=680, height=700, scrollbars=yes, toolbar=no, location=no, directories=no, status=no, menubar=no, close=yes, left="+x+", top="+y+""
			);
	newWin.focus();
}

