/********************************************************************************************************
*
*    /join/step01.asp
*
********************************************************************************************************/
	var joinForm = document.getElementById("joinForm");
	joinForm.onsubmit = function () {
		Async.send("/common/async/join_step1.asp", function (send_) {
			execScript(send_.responseText);
		}, formQueryString(this));
		return false;
	};

	joinForm.agree1.onclick = joinForm.agree1.onchange = function () {
		if (this.checked) {
			location.hash = "per02";
			joinForm.agree2.onclick();
		} else
			location.hash = "per01";
	};

	joinForm.agree2.onclick = joinForm.agree2.onchange = function () {
		if (this.checked) {
			location.hash = "per03"
			this.form.name.focus();
			this.form.name.select();
		} else
			location.hash = "per02"
	};
	joinForm.socialNo1.onkeyup = function () {
		if (this.value.length == this.maxLength)
			this.form.socialNo2.focus();
	};
/*******************************************************************************************************/