var click1 = false;
var click2 = false;
var push_agree_type = '';	// get,post
var push_agree_url  = '';	// 同意時遷移先URL
var push_target_form = null;	// POST時ターゲットフォーム

function privacy_click(num){
	if(num==1)click1=true;
	if(num==2)click2=true;

	if(click1 && click2){
		document.getElementById("approval").className = "approval";
		document.getElementById("agree").disabled=false;
		document.getElementById("agree").onclick = function(){ push_agree(this.id) };
		document.getElementById("not_agree").disabled=false;
		document.getElementById("not_agree").onclick = function(){ push_not_agree(this.id) };
	}
}

function push_agree(id){
	if(push_agree_type=='get'){
		location.href=push_agree_url;
	}
	if(push_agree_type=='post'){
		push_target_form.action=push_agree_url;
		push_target_form.method='post';
		push_target_form.submit();
	}
}

function push_not_agree(id){
	parent.tb_remove();
}

function set_agree_info(type,url,frm){
	click1 = false;
	click2 = false;

	push_agree_type=type;
	push_agree_url=url;
	push_target_form=frm;
	return(false);
}


