// JavaScript Document
<!-- 
	function confirmation(){
	  var objElement = document.getElementById('frm01');
      objElement.method="post";
      objElement.action = "./form.html#error-title2";
      objElement.submit();
	}
	function transmission(){
		var objElement = document.getElementById('form_exe');
      objElement.method="post";
      objElement.action = "./mailto.php";
      objElement.submit();
	}
	function returns(){
		var objElement = document.getElementById('form_exe');
      objElement.method="post";
      objElement.action = "./index.html#error-title2";
      objElement.submit();
	}

// -->

