	function GotoInquiry( title , m){
	    if (m == null) {
	        mpost = "0";
	    }
	    else {
	        mpost = m;
	    } 
   		var form = document.createElement( 'form' );
		form.style.display = 'none';
		document.body.appendChild( form );
		var input = document.createElement( 'input' );
		input.setAttribute( 'type' , 'hidden' );
		input.setAttribute( 'name' , 'q' );
		input.setAttribute( 'value' , title );
		form.appendChild( input );
		var input2 = document.createElement( 'input' );
		input2.setAttribute( 'type' , 'hidden' );
		input2.setAttribute( 'name' , 'm' );
		input2.setAttribute( 'value' , mpost );
		form.appendChild( input2 );
		form.setAttribute( 'action' , 'https://www.yamaichi-techno.jp/contact/inquiries' );
		form.setAttribute( 'method' , 'post' );
		form.submit();
	}

