//JavaScriptファイル

/*****************************************************************************************
名　称：fAgree
機　能：同意して次ページへ遷移する
引　数：1. [I  ] - form - form名
		2. [I  ] - url  - 遷移先名
戻り値：なし
*****************************************************************************************/
function fAgree(form, url){
	form.agree.value = "1";
	form.action = url;
	form.method = "post";
	form.submit();
}
