function Del(){
	if(document.Search.Search_txt.value == "著者名、タイトル、ISBN、説明文等を入力"){
		document.Search.Search_txt.value = "";
	}
}
function Check(){
	if(document.Search.Search_txt.value == "著者名、タイトル、ISBN、説明文等を入力" ||
	   document.Search.Search_txt.value == ""){
		document.Search.Search_txt.focus();
		alert("検索内容を入力してください。");
		return false;
	}else{
		document.Search.submit();
		return true;
	}
}

function Ent(){
if (event.keyCode == 13){
	
	if(document.Search.Search_txt.value == "著者名、タイトル、ISBN、説明文等を入力" ||
	   document.Search.Search_txt.value == ""){
		document.Search.Search_txt.focus();
		alert("検索内容を入力してください。");
		return false;
	}else{
		document.Search.submit();
		return true;
	}
}
}
