// JavaScript Document

////////////////////////////////////////////////////////////////////
//
// index.php
//
////////////////////////////////////////////////////////////////////

function checkText() {
  var error = "";
  if(document.form1.name.value == ""){
  	error += "お名前を入力してください\r\n";
  }
  if(document.form1.email.value == ""){
  	error += "メールアドレスを入力してください\r\n";
  }
  if(document.form1.askme.value == ""){
  	error += "ぜひご質問を入力してください\r\n";
  }
  
  if(error != ""){
	  alert( error );
  }
  else
  {
  	 document.form1.action = "confirm.php";
	 document.form1.method = "post";
	 document.form1.submit();
  }
}




////////////////////////////////////////////////////////////////////
//
// confirm.php
//
////////////////////////////////////////////////////////////////////


function decideAsking() {
	 document.form2.action = "mail.php";
	 document.form2.method = "post";
	 document.form2.submit();
}

function modifyAsking()
{
	document.form2.action = "index2.php";
	document.form2.method = "post";
	document.form2.submit();
}


