function MenuOn(x) {
	document.getElementById("submenu"+x).style.visibility="visible";
}
function MenuOff(x) {
	document.getElementById("submenu"+x).style.visibility="hidden";
}
function EmailCheck() {
	str = document.form.email.value;
	if (str=='') { alert("メールアドレスを入力してください。"); return false; }
	else if (str.indexOf("@",0) <=0) { return false; }
//	check = /.+@.+¥..+/;
//	if(!str.match(check)) { alert("正しいメールアドレスを入力してください。"); return false; }
	else { return true;}
}