﻿function start(){
	dom.event.addEventListener(window,'load',initDocument);
}

function initDocument(){
	var privacy_chk = document.getElementById('privacy_chk');
	if(privacy_chk.checked==false){disable_form();}
	dom.event.addEventListener(privacy_chk,'click',change_fg);
}

function disable_form(){
	var name1 = document.getElementById('name1');
	name1.readOnly=true;
	name1.style.backgroundColor="#DCDCDC";
	var name2 = document.getElementById('name2');
	name2.readOnly=true;
	name2.style.backgroundColor="#DCDCDC";
	var kana1 = document.getElementById('kana1');
	kana1.readOnly=true;
	kana1.style.backgroundColor="#DCDCDC";
	var kana2 = document.getElementById('kana2');
	kana2.readOnly=true;
	kana2.style.backgroundColor="#DCDCDC";
	var birth_year = document.getElementById('birth_year');
	birth_year.readOnly=true;
	birth_year.style.backgroundColor="#DCDCDC";
	var birth_month = document.getElementById('birth_month');
	birth_month.readOnly=true;
	birth_month.style.backgroundColor="#DCDCDC";
	var birth_day = document.getElementById('birth_day');
	birth_day.readOnly=true;
	birth_day.style.backgroundColor="#DCDCDC";

	document.support_form.sex[0].disabled=true;
	document.support_form.sex[1].disabled=true;

/*
	var sex = document.getElementById('sex');
	sex.readOnly=true;
	sex.style.backgroundColor="#DCDCDC";
*/

	var zip1 = document.getElementById('zip1');
	zip1.readOnly=true;
	zip1.style.backgroundColor="#DCDCDC";
	var zip2 = document.getElementById('zip2');
	zip2.readOnly=true;
	zip2.style.backgroundColor="#DCDCDC";

	var pref = document.getElementById('pref');
	pref.readOnly=true;
	pref.style.backgroundColor="#DCDCDC";

	var addresss = document.getElementById('addresss');
	addresss.readOnly=true;
	addresss.style.backgroundColor="#DCDCDC";

	var mobile1 = document.getElementById('mobile1');
	mobile1.readOnly=true;
	mobile1.style.backgroundColor="#DCDCDC";	
	var mobile2 = document.getElementById('mobile2');
	mobile2.readOnly=true;
	mobile2.style.backgroundColor="#DCDCDC";	
	var mobile3 = document.getElementById('mobile3');
	mobile3.readOnly=true;
	mobile3.style.backgroundColor="#DCDCDC";
	var mobile_mail = document.getElementById('mobile_mail');
	mobile_mail.readOnly=true;
	mobile_mail.style.backgroundColor="#DCDCDC";	
	var umail_a = document.getElementById('umail_a');
	umail_a.readOnly=true;
	umail_a.style.backgroundColor="#DCDCDC";	
	var umail_c = document.getElementById('umail_c');
	umail_c.readOnly=true;
	umail_c.style.backgroundColor="#DCDCDC";
	var graduate = document.getElementById('graduate');
	graduate.readOnly=true;
	graduate.style.backgroundColor="#DCDCDC";

}
function enable_form(){	
	var name1 = document.getElementById('name1');
	name1.readOnly=false;
	name1.style.backgroundColor="#FFFFFF";
	var name2 = document.getElementById('name2');
	name2.readOnly=false;
	name2.style.backgroundColor="#FFFFFF";
	var kana1 = document.getElementById('kana1');
	kana1.readOnly=false;
	kana1.style.backgroundColor="#FFFFFF";
	var kana2 = document.getElementById('kana2');
	kana2.readOnly=false;
	kana2.style.backgroundColor="#FFFFFF";
	var birth_year = document.getElementById('birth_year');
	birth_year.readOnly=false;
	birth_year.style.backgroundColor="#FFFFFF";
	var birth_month = document.getElementById('birth_month');
	birth_month.readOnly=false;
	birth_month.style.backgroundColor="#FFFFFF";
	var birth_day = document.getElementById('birth_day');
	birth_day.readOnly=false;
	birth_day.style.backgroundColor="#FFFFFF";

	document.support_form.sex[0].disabled=false;
	document.support_form.sex[1].disabled=false;

/*
	var sex = document.getElementById('sex');
	sex.readOnly=false;
	sex.style.backgroundColor="#FFFFFF";
*/
	var zip1 = document.getElementById('zip1');
	zip1.readOnly=false;
	zip1.style.backgroundColor="#FFFFFF";
	var zip2 = document.getElementById('zip2');
	zip2.readOnly=false;
	zip2.style.backgroundColor="#FFFFFF";

	var pref = document.getElementById('pref');
	pref.readOnly=false;
	pref.style.backgroundColor="#FFFFFF";

	var addresss = document.getElementById('addresss');
	addresss.readOnly=false;
	addresss.style.backgroundColor="#FFFFFF";

	var mobile1 = document.getElementById('mobile1');
	mobile1.readOnly=false;
	mobile1.style.backgroundColor="#FFFFFF";
	var mobile2 = document.getElementById('mobile2');
	mobile2.readOnly=false;
	mobile2.style.backgroundColor="#FFFFFF";
	var mobile3 = document.getElementById('mobile3');
	mobile3.readOnly=false;
	mobile3.style.backgroundColor="#FFFFFF";
	var mobile_mail = document.getElementById('mobile_mail');
	mobile_mail.readOnly=false;
	mobile_mail.style.backgroundColor="#FFFFFF";
	var umail_a = document.getElementById('umail_a');
	umail_a.readOnly=false;
	umail_a.style.backgroundColor="#FFFFFF";	
	var umail_c = document.getElementById('umail_c');
	umail_c.readOnly=false;
	umail_c.style.backgroundColor="#FFFFFF";
	var graduate = document.getElementById('graduate');
	graduate.readOnly=false;
	graduate.style.backgroundColor="#FFFFFF";
}
function change_fg(eve){
	var tagetelm = dom.event.target(eve);
	if(tagetelm.checked==true){
		enable_form();
	}else{
		disable_form();
	}	

}

function submitForm(){
	submit();	
}


