// JavaScript Document
function kidou() {

	if(document.getElementById('doui').checked == true) {
		//ocument.form1.submit();
		var url = "mailto:merumaga@e-mill.jp?Subject=e-mill";
		location.href = url;
	} else {
		alert("プライベートポリシーの同意にチェックを入れてください");
	}

}
function touroku() {
	var flg = confirm("この内容で登録してもいいですか？");
	if(flg) {
		document.getElementById('reg').value = "1";
		document.form1.submit();
	}
}

function rtnWindow() {
	document.form1.action="maTouroku.php?rtn";
	document.form1.submit();
}

function check() {
	var sex = document.form1.sex.options[document.form1.sex.selectedIndex].value;
	var nendai = document.form1.nendai.options[document.form1.nendai.selectedIndex].value;
	var tiku = document.form1.tiku.options[document.form1.tiku.selectedIndex].value;
	
	if(sex=="" || nendai=="" || tiku=="") {
		alert("選択されていない項目があります");
	} else {
		document.getElementById('reg').value = "1";
		document.form1.submit();
	}
}

