function chkForm1()
 {
if (document.ml.name.value == "Name")
 {	alert("名前を記入してください。");
	document.form.name.focus();}
if (document.ml.name.value == "Mail Address")
 {	alert("メールアドレスを記入してください。");
	document.form.name.focus();}
return(true);
}

function chkForm2()
 {
if (document.mm.name.value == "Name")
 {	alert("名前を記入してください。");
	document.form.name.focus();}
if (document.mm.name.value == "Mail Address")
 {	alert("メールアドレスを記入してください。");
	document.form.name.focus();}
return(true);
}