function gobook(bookNo) {
	window.open("ref/data/" + bookNo + ".html","shopwin","width=580,height=580,directories=no,location=no,menubar=no,toolbar=no,status=yes,scrollbars=yes,resizable=yes");
}

function gobook2(bookNo) {
	window.open("data/" + bookNo + ".html","shopwin","width=580,height=580,directories=no,location=no,menubar=no,toolbar=no,status=yes,scrollbars=yes,resizable=yes");
}

function gobook3(bookNo) {
	window.open("../ref/data/" + bookNo + ".html","shopwin","width=580,height=580,directories=no,location=no,menubar=no,toolbar=no,status=yes,scrollbars=yes,resizable=yes");
}

function gobook4(bookNo) {
	window.open("http://www.golf-book.net/ref/data/" + bookNo + ".html","shopwin","width=580,height=580,directories=no,location=no,menubar=no,toolbar=no,status=yes,scrollbars=yes,resizable=yes");
}

function A_Li(){
	Sel = document.Link1.OP.selectedIndex;
	Ms = document.Link1.OP.options[Sel].value;

// [選んでください]を選んだ場合の警告文
	if(Ms=="E"){
		alert("これは選択できません");
	}
	else{
		parent.location.href = Ms;
	}
}