function click_delete(isbn,index) {
	if (confirm("本当に削除しますか")) {
		frmReview.isbn.value = isbn;
		frmReview.data_type.value = "DEL";
		frmReview.submit();
//		location.href = "./";
//		alert("ok");
	} else {
		return false;
	}
}

function mouse_over(obj,index) {
	obj.style.backgroundColor='#f3f3e9';
	document.all.chg_btn[index].style.display="";
	document.all.del_btn[index].style.display="";
}

function mouse_out(obj,index) {
	obj.style.backgroundColor='#ffffff';
	document.all.chg_btn[index].style.display="none";
	document.all.del_btn[index].style.display="none";
}

function add_list() {
	frmList.submit();
	frmList.start_cnt.value = parseInt(frmList.start_cnt.value) + parseInt(frmList.list_cnt.value);
}


