function alertColorChoose(color, hani, no) {
	if(color == "" && hani == "") {
		return ;
	}
	
	if(color == 'フルカラー' && hani < 4) {
		alert('フルカラーの場合はA5,A4,A3からプリント範囲を選んでください。');
		if(no == 1) {
			document.form3.print_hani1[document.form3.print_hani1.selectedIndex].value = "";
			document.form3.print_hani1.selectedIndex = "";
		} else if(no == 2) {
			document.form3.print_hani2[document.form3.print_hani2.selectedIndex].value = "";
			document.form3.print_hani2.selectedIndex = "";
		} else if(no == 3) {
			document.form3.print_hani3[document.form3.print_hani3.selectedIndex].value = "";
			document.form3.print_hani3.selectedIndex = "";
		}
		return false;
	}
	
	if(color != 'フルカラー' && hani > 3) {
		alert('1色-4色の場合はA5,A4,A3「以外」からプリント範囲を選んでください。');
		if(no == 1) {
			document.form3.print_hani1[document.form3.print_hani1.selectedIndex].value = "";
			document.form3.print_hani1.selectedIndex = "";
		} else if(no == 2) {
			document.form3.print_hani2[document.form3.print_hani2.selectedIndex].value = "";
			document.form3.print_hani2.selectedIndex = "";
		} else if(no == 3) {
			document.form3.print_hani3[document.form3.print_hani3.selectedIndex].value = "";
			document.form3.print_hani3.selectedIndex = "";
		}
		return false;
	}
	
	
}
