// 指名がない時には、一度アラートを出す
function check(){
	var flag = 0;
	// 設定開始（チェックする項目を設定してください）
	if(document.form1.choice.options[document.form1.choice.selectedIndex].value == "指名無し"){
		flag = 1;
	}
	// 設定終了
	if(flag){
		var flag = confirm ( "「指名無し」で、予約を受け付けてよろしいでしょうか？");
        return flag;
    }
}
//すでにコースが選択済みのとき
function ckcourse( coursename,courseplayname ){
	//お手伝いコース
	if(coursename == "お手伝いコース"){
		$(".opt01").show();
		$(".opt02").show();
		$(".opt03").show();
		$(".opt04").show();
		$(".opt05").hide();
		$(".opt06").hide();
		$(".opt07").hide();
		$(".opt08").hide();
		$(".opt09").hide();
		$(".opt10").hide();
		$(".opt11").hide();
		$(".opt12").hide();
	}
	//ハンドエステコース
	if(coursename == "ハンドエステコース"){
		$(".opt01").show();
		$(".opt02").show();
		$(".opt03").hide();
		$(".opt04").hide();
		$(".opt05").show();
		$(".opt06").show();
		$(".opt07").show();
		$(".opt08").hide();
		$(".opt09").hide();
		$(".opt10").hide();
		$(".opt11").hide();
		$(".opt12").hide();
	}
	//ヘルスコース
	if(coursename == "ヘルスコース"){
		$(".opt01").show();
		$(".opt02").show();
		$(".opt03").hide();
		$(".opt04").hide();
		$(".opt05").hide();
		$(".opt06").hide();
		$(".opt07").show();
		$(".opt08").show();
		$(".opt09").show();
		$(".opt10").show();
		$(".opt11").show();
		$(".opt12").show();
	}
	//恋人(普通)プレイ
	if(courseplayname == "恋人(普通)プレイ"){
		$(".cosp1").show();
		$(".cosp2").hide();
		$(".cosp3").hide();
		$(".cosp4").hide();
	}
	//メイドプレイ
	if(courseplayname == "メイドプレイ"){
		$(".cosp1").hide();
		$(".cosp2").show();
		$(".cosp3").hide();
		$(".cosp4").hide();
	}
	//女子高生プレイ
	if(courseplayname == "女子高生プレイ"){
		$(".cosp1").hide();
		$(".cosp2").hide();
		$(".cosp3").show();
		$(".cosp4").hide();
	}
	//ナースプレイ
	if(courseplayname == "ナースプレイ"){
		$(".cosp1").hide();
		$(".cosp2").hide();
		$(".cosp3").hide();
		$(".cosp4").show();
	}
}
//コースが選択された瞬間
function chocourse(){
	var coursename = document.form1.course.value;
	//お手伝いコース
	if(coursename == "お手伝いコース"){
		$(".opt01").show();
		$(".opt02").show();
		$(".opt03").show();
		$(".opt04").show();
		$(".opt05").hide();
		$(".opt06").hide();
		$(".opt07").hide();
		$(".opt08").hide();
		$(".opt09").hide();
		$(".opt10").hide();
		$(".opt11").hide();
		$(".opt12").hide();
	}
	//ハンドエステコース
	if(coursename == "ハンドエステコース"){
		$(".opt01").show();
		$(".opt02").show();
		$(".opt03").hide();
		$(".opt04").hide();
		$(".opt05").show();
		$(".opt06").show();
		$(".opt07").show();
		$(".opt08").hide();
		$(".opt09").hide();
		$(".opt10").hide();
		$(".opt11").hide();
		$(".opt12").hide();
	}
	//ヘルスコース
	if(coursename == "ヘルスコース"){
		$(".opt01").show();
		$(".opt02").show();
		$(".opt03").hide();
		$(".opt04").hide();
		$(".opt05").hide();
		$(".opt06").hide();
		$(".opt07").show();
		$(".opt08").show();
		$(".opt09").show();
		$(".opt10").show();
		$(".opt11").show();
		$(".opt12").show();
	}
}
//プレイが選択された瞬間
function choplay(){
	var courseplayname = document.form1.courseplay.value;
	//恋人(普通)プレイ
	if(courseplayname == "恋人(普通)プレイ"){
		$(".cosp1").show();
		$(".cosp2").hide();
		$(".cosp3").hide();
		$(".cosp4").hide();
	}
	//メイドプレイ
	if(courseplayname == "メイドプレイ"){
		$(".cosp1").hide();
		$(".cosp2").show();
		$(".cosp3").hide();
		$(".cosp4").hide();
	}
	//女子高生プレイ
	if(courseplayname == "女子高生プレイ"){
		$(".cosp1").hide();
		$(".cosp2").hide();
		$(".cosp3").show();
		$(".cosp4").hide();
	}
	//ナースプレイ
	if(courseplayname == "ナースプレイ"){
		$(".cosp1").hide();
		$(".cosp2").hide();
		$(".cosp3").hide();
		$(".cosp4").show();
	}
}
