window.onload = function(){
	document.getElementById("checkButtonE").onclick = function(){
		var checkList = ["agree"];
		var str = "";
		for(var i=0; i<checkList.length; i++){
			var chkObj = document.getElementById(checkList[i]);
			if (chkObj.checked) {
				location.href = "https://www.daiward.co.jp/contact/index.php?form=e";
				str += chkObj.value;
				}
			}
			if (!str) str = alert("「個人情報保護に関するお知らせ」に同意の上、お問い合わせをお願い致します。");
		}
}
