// JavaScript Document
function disp(url){
		window.open(url, "window_name", "width=750,height=780,scrollbars=yes");
}


/* plus 用スクリプト */
// 入力ページへ戻る
function backToIndex(){
	sUrl = "index.php";
	document.f_confirm.action = sUrl;
	document.f_confirm.submit();
}
// お問合せ送信
function sendMail(){
	sMsg = "送信してよろしいですか。";
	if(confirm(sMsg)){
		document.f_confirm.action = "";
		document.f_confirm.submit();
	}
}
