url = location.href;
url.match(/(#)/);
var_anchor = RegExp.rightContext;
var_anchor = "#"+var_anchor;
action = url.replace(var_anchor,"");
function agreement(){
	if(document.getElementById('agreement_yes').checked == false){
		alert("弊社の個人情報の取扱いについてに同意していただく必要がございます。");
	}else{
		document.getElementById('form_onoreno_chikara_agreement').action = action;
		document.getElementById('form_onoreno_chikara_agreement').method = "post";
		document.getElementById('form_onoreno_chikara_agreement').submit();
	}
}
function confirm(){
	document.getElementById('form_basic').action = action;
	document.getElementById('form_basic').method = "post";
	document.getElementById('form_basic').submit();
}
function transfer(){
	document.getElementById('form_basic').action = action;
	document.getElementById('form_basic').method = "post";
	document.getElementById('form_basic').submit();
}

