//======================================================================
//　スクリプト（ポップアップウインドウ）
//======================================================================
function popupCenter (url, name, width, height) {
	var left = (screen.width - width) / 2;
	var top = (screen.height - height) / 2;
	var options = "status=yes,scrollbars=yes,directories=no,menubar=no,resizable=yes,toolbar=no,titlebar=no,left=" + left + ",top=" + top + ",width=" + width + ",height=" + height;
	myWindow = window.open(url, name, options);
	if (myWindow.focus!=null) {
		myWindow.focus();
	}
}
