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