/*
	親ウィンドウの表示ページを変更して、親ウィンドウを手前に表示する。子ウィンドウは閉じる。
	onclick="OpenerLink('../reserve/index.html'); return(false);"
*/

function OpenerLink(JumpUrl) {
	window.opener.focus();
	window.opener.location.href = JumpUrl;
	window.close();
}

function OpenerSubmit(form) {
    window.opener.focus();
    window.close();
    form = documet.getElementById(form);
    form.submit();
}
