
function doIt(act)
{
	if (FLAG==false){
		if (act=='back') {
			document.form1.action.value=2;
			document.form1.submit();
			FLAG=true;
		} else if (act=='submit2') {
			document.form1.action.value=1;
			document.form1.submit();
			FLAG=true;
		} else if (act=='submit') {
			if (document.form1.Q03.value==document.form1.email.value){
				document.form1.submit();
				FLAG=true;
			} else {
				alert("��͂��ꂽ���[���A�h���X�Ⲋm�F��������");
			}
		}
	}
}
FLAG=false;

// 設定開始
// （フレームの場合は、表示先のフレーム名を設定してください）
// （top を指定すると、フレームの分割を廃止して画面全体で表示します）
// （blank を指定すると、新規ウィンドウで表示します）

var target = "";

// 設定終了

function faqJump(){

	var url = document.form1.select.options[document.form1.select.selectedIndex].value;

	if(url != "" ){

		if(target == 'top'){

			top.location.href = url;

		}
		else if(target == 'blank'){

			window.open(url, 'window_name');

		}
		else if(target != ""){

			eval('parent.' + target + '.location.href = url');

		}
		else{

			location.href = url;

		}

	}

}
